diff options
author | Chris Larson <clarson@kergoth.com> | 2004-01-20 05:52:28 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-01-20 05:52:28 +0000 |
commit | a04cbc663da7008f3dc25cd355530512b702af44 (patch) | |
tree | 39abb40bdcc1b68bcfc15a446bf090abe460ffc8 /iptables | |
parent | fa94500dcfc0fe992fe20887572af16bc09f499f (diff) |
BUGFIX: fixup iptables build, which was failing due to an erronious /usr/src/linux/include in the include path.
BKrev: 400cc21c83z0u7Y8MLbAJkd7gEj8Og
Diffstat (limited to 'iptables')
-rw-r--r-- | iptables/iptables_1.2.9.oe | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/iptables/iptables_1.2.9.oe b/iptables/iptables_1.2.9.oe index 55af54b770..da3ed0560c 100644 --- a/iptables/iptables_1.2.9.oe +++ b/iptables/iptables_1.2.9.oe @@ -6,12 +6,13 @@ SRC_URI = http://www.netfilter.org/files/iptables-1.2.9.tar.bz2 S = "${WORKDIR}/iptables-1.2.9" +export COPT_FLAGS=${CFLAGS} +export KERNEL_DIR=${STAGING_INCDIR} do_compile () { unset CFLAGS - oe_runmake PREFIX=${prefix} + oe_runmake } do_install () { - unset CFLAGS oe_runmake PREFIX=${prefix} DESTDIR=${D} install } |