[pango: 1/2] build: Correct Darwin linker options



commit 73e454832a7ac592dfa600cb6b495dc99660b0ca
Author: Philip Chimento <philip chimento gmail com>
Date:   Sat Apr 7 23:50:32 2018 -0700

    build: Correct Darwin linker options
    
    The Darwin linker doesn't want equal signs here.
    
    Closes: #304

 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
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


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]