meson.build: fix macOS common_ldflags

Equal signs are not accepted by the macOS linker: spaces must be used instead.
macos/v1.5.9
Tom Schoonjans 8 years ago committed by GitHub
parent 8d03a6a827
commit 85c122899c
  1. 2
      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, ]

Loading…
Cancel
Save