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:
parent
48ce8e9fb7
commit
b459fd3910
|
@ -601,7 +601,7 @@ if is_android
|
||||||
else
|
else
|
||||||
target_type = 'executable'
|
target_type = 'executable'
|
||||||
target_name = 'mpd'
|
target_name = 'mpd'
|
||||||
install_dir = ''
|
install_dir = get_option('bindir')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
mpd = build_target(
|
mpd = build_target(
|
||||||
|
|
Loading…
Reference in New Issue