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-14 22:02:10 -0700
commit16a5a58aa7a590b7d159b818bac899df46a64f92 (patch)
tree61278e725d3cedf57c7b411e3944b175b0561f64
parentf545bfedff430e72de09d586238494666c72828c (diff)
downloadatk-16a5a58aa7a590b7d159b818bac899df46a64f92.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