From: Ryan Schmidt Date: Wed, 18 Apr 2018 14:50:15 +0000 (-0500) Subject: Use LDFLAGS when building libutf8proc.dylib (#125) X-Git-Tag: archive/raspbian/2.11.3-2+rpi1^2~10^2~1^2~126 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=6a20831a07486dff584ff77f315336d110202bbe;p=utf8proc.git Use LDFLAGS when building libutf8proc.dylib (#125) --- diff --git a/Makefile b/Makefile index e6459c3..b3bb570 100644 --- a/Makefile +++ b/Makefile @@ -81,7 +81,7 @@ libutf8proc.so: libutf8proc.so.$(MAJOR).$(MINOR).$(PATCH) ln -f -s libutf8proc.so.$(MAJOR).$(MINOR).$(PATCH) $@.$(MAJOR) libutf8proc.$(MAJOR).dylib: utf8proc.o - $(CC) -dynamiclib -o $@ $^ -install_name $(libdir)/$@ -Wl,-compatibility_version -Wl,$(MAJOR) -Wl,-current_version -Wl,$(MAJOR).$(MINOR).$(PATCH) + $(CC) $(LDFLAGS) -dynamiclib -o $@ $^ -install_name $(libdir)/$@ -Wl,-compatibility_version -Wl,$(MAJOR) -Wl,-current_version -Wl,$(MAJOR).$(MINOR).$(PATCH) libutf8proc.dylib: libutf8proc.$(MAJOR).dylib ln -f -s libutf8proc.$(MAJOR).dylib $@