diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-11-05 11:55:00 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-11-05 11:55:00 +0000 |
commit | 80a458df0518835f1d39ffd6435abdd9a89ee8e1 (patch) | |
tree | 75d19017063d9d9e2b986db1c1efaca96c14877e /package/iproute2/patches | |
parent | bfba89123bc4ebd3944b28a3dde1e0526fd9d70f (diff) | |
download | upstream-80a458df0518835f1d39ffd6435abdd9a89ee8e1.tar.gz upstream-80a458df0518835f1d39ffd6435abdd9a89ee8e1.tar.bz2 upstream-80a458df0518835f1d39ffd6435abdd9a89ee8e1.zip |
Pass TARGET_CFLAGS using and external variable instead a sed expression that can fail when TARGET_CFLAGS contains the ":" symbol.
Signed-off: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
SVN-Revision: 18311
Diffstat (limited to 'package/iproute2/patches')
-rw-r--r-- | package/iproute2/patches/110-extra-ccopts.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/iproute2/patches/110-extra-ccopts.patch b/package/iproute2/patches/110-extra-ccopts.patch new file mode 100644 index 0000000000..b1edc6a960 --- /dev/null +++ b/package/iproute2/patches/110-extra-ccopts.patch @@ -0,0 +1,11 @@ +--- ./Makefile.old 2009-10-18 21:14:18.344641842 +0200 ++++ ./Makefile 2009-10-18 21:14:33.558618672 +0200 +@@ -22,7 +22,7 @@ + + CC = gcc + HOSTCC = gcc +-CCOPTS = -D_GNU_SOURCE -O2 -Wstrict-prototypes -Wall ++CCOPTS = -D_GNU_SOURCE -O2 -Wstrict-prototypes -Wall $(EXTRA_CCOPTS) + CFLAGS = $(CCOPTS) -I../include $(DEFINES) + YACCFLAGS = -d -t -v + |