code icon indicating copy to clipboard operation
code copied to clipboard

Meson build failed for armhf

Open FlightBlaze opened this issue 7 years ago • 3 comments

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

FlightBlaze avatar Feb 13 '19 01:02 FlightBlaze

What is your meson version?

tintou avatar Feb 13 '19 09:02 tintou

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'
 )

ricotz avatar Feb 13 '19 13:02 ricotz