diff options
author | John Bowler <jbowler@nslu2-linux.org> | 2005-09-07 19:13:49 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-09-07 19:13:49 +0000 |
commit | bfa22129da7ab902bd1b72743df895efe2dec705 (patch) | |
tree | 503bb9f07980b6a0d8af56785301fbbb73206d2f /packages/iptables | |
parent | e25c3f5d7a7ac6fbaeb58aa654a0369a70952444 (diff) |
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
Diffstat (limited to 'packages/iptables')
-rw-r--r-- | packages/iptables/iptables_1.3.3.bb | 1 |
1 files changed, 1 insertions, 0 deletions
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 } |