Fix bin install location on linux.
For Linux, Meson's default value for bindir is 'bin' [1].
This commit restores mpd's previous functionality of installation in ${prefix}/bin.
[1] https://mesonbuild.com/Builtin-options.html
Fixes https://github.com/MusicPlayerDaemon/MPD/issues/2043
This commit is contained in:
@@ -601,7 +601,7 @@ if is_android
|
||||
else
|
||||
target_type = 'executable'
|
||||
target_name = 'mpd'
|
||||
install_dir = ''
|
||||
install_dir = get_option('bindir')
|
||||
endif
|
||||
|
||||
mpd = build_target(
|
||||
|
||||
Reference in New Issue
Block a user