diff options
author | Jeremy Lainé <jeremy.laine@m4x.org> | 2009-04-08 08:42:23 +0000 |
---|---|---|
committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2009-04-08 08:42:23 +0000 |
commit | 0377cdf5dabc1a3559e86a5101114465100dc813 (patch) | |
tree | 62e52e60003ace7541a22451dfa7c2571ad7e5ee /recipes/hostap/hostap-utils-0.4.7 | |
parent | a6d06c8abf1aee0bccb60005fb4ce360b1b4b66e (diff) |
hostap-utils-0.4.7: use LDFLAGS (fixes QA error)
Diffstat (limited to 'recipes/hostap/hostap-utils-0.4.7')
-rw-r--r-- | recipes/hostap/hostap-utils-0.4.7/ldflags.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/recipes/hostap/hostap-utils-0.4.7/ldflags.patch b/recipes/hostap/hostap-utils-0.4.7/ldflags.patch new file mode 100644 index 0000000000..d2ca2980db --- /dev/null +++ b/recipes/hostap/hostap-utils-0.4.7/ldflags.patch @@ -0,0 +1,24 @@ +diff -urN hostap-utils-0.4.7.orig/Makefile hostap-utils-0.4.7/Makefile +--- hostap-utils-0.4.7.orig/Makefile 2005-01-01 06:42:51.000000000 +0000 ++++ hostap-utils-0.4.7/Makefile 2009-04-08 08:36:46.000000000 +0000 +@@ -14,17 +14,17 @@ + hostap_crypt_conf: hostap_crypt_conf.c + + hostap_diag: hostap_diag.o util.o +- $(CC) -o hostap_diag $(CFLAGS) hostap_diag.o util.o ++ $(CC) -o hostap_diag $(CFLAGS) $(LDFLAGS) hostap_diag.o util.o + + hostap_diag.o: hostap_diag.c util.h + + util.o: util.c util.h + + hostap_io_debug: hostap_io_debug.c +- $(CC) -o hostap_io_debug $(CFLAGS) hostap_io_debug.c ++ $(CC) -o hostap_io_debug $(CFLAGS) $(LDFLAGS) hostap_io_debug.c + + hostap_rid: hostap_rid.o util.o +- $(CC) -o hostap_rid $(CFLAGS) hostap_rid.o util.o ++ $(CC) -o hostap_rid $(CFLAGS) $(LDFLAGS) hostap_rid.o util.o + + hostap_rid.o: hostap_rid.c util.h + |