diff options
author | Jeremy Lainé <jeremy.laine@m4x.org> | 2009-04-02 09:30:00 +0000 |
---|---|---|
committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2009-04-02 09:30:00 +0000 |
commit | 3a485444f0dd07fd2315769db3f6f46e3972134e (patch) | |
tree | 01c0b6ba2c72adab3db78423aebad36119387a4a /recipes/zeroconf/files | |
parent | b0f170f9cec728483f282c65c44d48b33ac12f2e (diff) |
zeroconf: use LDFLAGS (fixes QA error)
Diffstat (limited to 'recipes/zeroconf/files')
-rw-r--r-- | recipes/zeroconf/files/zeroconf-ldflags.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/recipes/zeroconf/files/zeroconf-ldflags.patch b/recipes/zeroconf/files/zeroconf-ldflags.patch new file mode 100644 index 0000000000..ba6056953e --- /dev/null +++ b/recipes/zeroconf/files/zeroconf-ldflags.patch @@ -0,0 +1,12 @@ +diff -urN zeroconf-0.9.orig/Makefile zeroconf-0.9/Makefile +--- zeroconf-0.9.orig/Makefile 2006-04-29 10:41:15.000000000 +0000 ++++ zeroconf-0.9/Makefile 2009-04-02 09:27:38.000000000 +0000 +@@ -18,7 +18,7 @@ + + zeroconf: zeroconf.o delay.o + $(Q)echo "Creating $@" +- $(Q)$(CC) $(CFLAGS) -o $@ $^ $(LIBS) ++ $(Q)$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS) + + + # Automatic dependency generation |