diff options
author | Philip Chimento <philip.chimento@gmail.com> | 2018-04-07 23:50:32 -0700 |
---|---|---|
committer | Philip Chimento <philip.chimento@gmail.com> | 2018-05-22 21:34:15 -0400 |
commit | 73e454832a7ac592dfa600cb6b495dc99660b0ca (patch) | |
tree | b9665ae7cd54ee950e4fc741c22a04be356b7539 /meson.build | |
parent | f661cdbf8cfbdb2ba7241d8dfa4a579c6dfe0a94 (diff) | |
download | pango-73e454832a7ac592dfa600cb6b495dc99660b0ca.tar.gz |
build: Correct Darwin linker options
The Darwin linker doesn't want equal signs here.
Closes: #304
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 9721e276..dc50240c 100644 --- a/meson.build +++ b/meson.build @@ -147,7 +147,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 |