summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpsykose <alice@ayaya.dev>2023-03-02 02:22:01 +0000
committerpsykose <alice@ayaya.dev>2023-03-02 03:22:01 +0100
commit4e55c55802e4aee5f65be120291f5f4785483d98 (patch)
tree3186e95d93470b07418bbc53ae64eaeda99d6848
parentd0752309ff93f62be246ee9bf18338107f30d485 (diff)
downloadlcms2-4e55c55802e4aee5f65be120291f5f4785483d98.tar.gz
meson: fix big endian cargs
otherwise they are a string and appending with + [""] later fails in plugins/fast_float/testbed/meson.build:5:0: ERROR: The `+` operator of str does not accept objects of type list (['-DPROFILES_DIR="/home/buildozer/aports/main/lcms2/src/lcms2-2.15/plugins/test_profiles/"'])
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 694895e..2aa1dff 100644
--- a/meson.build
+++ b/meson.build
@@ -27,7 +27,7 @@ if cc.has_function_attribute('visibility:hidden')
endif
if host_machine.endian() == 'big'
- cargs = '-DWORDS_BIGENDIAN=1'
+ cargs += '-DWORDS_BIGENDIAN=1'
endif