From 0ae3ec7578f1638b067f0e26bac5b0c52db82b60 Mon Sep 17 00:00:00 2001 From: Philip Chimento Date: Sat, 7 Apr 2018 23:45:48 -0700 Subject: build: Correct Darwin linker options The Darwin linker doesn't want equal signs here. https://bugzilla.gnome.org/show_bug.cgi?id=795065 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.1