summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Chimento <philip.chimento@gmail.com>2018-04-07 23:45:48 -0700
committerPhilip Chimento <philip.chimento@gmail.com>2018-04-07 23:47:54 -0700
commit0ae3ec7578f1638b067f0e26bac5b0c52db82b60 (patch)
tree2e3a18b4c8982f418e9cdcc1dc5704f505b3a6fe
parent0d6ad73328c545a0659dda6f084965e4a88d9065 (diff)
downloadatk-0ae3ec7578f1638b067f0e26bac5b0c52db82b60.tar.gz
build: Correct Darwin linker options
The Darwin linker doesn't want equal signs here. https://bugzilla.gnome.org/show_bug.cgi?id=795065
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 9a224ef..b2384bd 100644
--- a/meson.build
+++ b/meson.build
@@ -82,7 +82,7 @@ endif
# Maintain compatibility with autotools on macOS
if host_machine.system() == 'darwin'
- common_ldflags += [ '-compatibility_version=1', '-current_version=1.0', ]
+ common_ldflags += [ '-compatibility_version 1', '-current_version 1.0', ]
endif
# Functions