From: John Bowler Date: Wed, 7 Sep 2005 19:13:49 +0000 (+0000) Subject: iptables: fix the do_install step X-Git-Tag: Release-2010-05/1~9453^2~3601 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bfa22129da7ab902bd1b72743df895efe2dec705;p=openembedded.git iptables: fix the do_install step do_install will re-run the compile on some systems because of make time stamp problems, so it needs the same environment as do_compile --- diff --git a/packages/iptables/iptables_1.3.3.bb b/packages/iptables/iptables_1.3.3.bb index ab9fecc85c..4c500ad5b1 100644 --- a/packages/iptables/iptables_1.3.3.bb +++ b/packages/iptables/iptables_1.3.3.bb @@ -25,6 +25,7 @@ do_compile () { } do_install () { + unset CFLAGS oe_runmake BINDIR=${D}${sbindir} LIBDIR=${D}${libdir} MANDIR=${D}${mandir} install NO_SHARED_LIBS=1 }