From 85c122899cd4c7707f757f60050849e38e138248 Mon Sep 17 00:00:00 2001 From: Tom Schoonjans Date: Mon, 12 Jun 2017 12:54:13 +0100 Subject: [PATCH] meson.build: fix macOS common_ldflags Equal signs are not accepted by the macOS linker: spaces must be used instead. --- src/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meson.build b/src/meson.build index 3d48a4d..2b38466 100644 --- a/src/meson.build +++ b/src/meson.build @@ -59,7 +59,7 @@ endif # Maintain compatibility with autotools; see: https://github.com/anholt/libepoxy/issues/108 if host_system == 'darwin' - common_ldflags += [ '-compatibility_version=1', '-current_version=1.0', ] + common_ldflags += [ '-compatibility_version 1', '-current_version 1.0', ] endif epoxy_deps = [ dl_dep, ]