code
code copied to clipboard
Meson build failed for armhf
sudo meson build --prefix=/usr
Output: Meson encountered an error in file src/meson.build, line 53, column 0: Custom_install_dir must be a string
What is your meson version?
install_dir is supposed to be a string or array of strings.
Obviously meson should complain about that, but doesn't here with 0.49.2
--- a/src/meson.build
+++ b/src/meson.build
@@ -56,7 +56,6 @@ codecore = library(
config_header,
dependencies: dependencies,
install: true,
- install_dir: [true, true, true],
version: '0.0'
)