diff options
author | Jeremy Puhlman <jpuhlman@mvista.com> | 2009-07-14 19:10:03 -0700 |
---|---|---|
committer | Chris Larson <clarson@mvista.com> | 2009-08-27 13:21:16 -0700 |
commit | f0b67d21ab82330aceee1f32d46add93b87875e4 (patch) | |
tree | c20be7dde62161f398fd44d4b550452ba47e8c3a /recipes/iptables/files | |
parent | 87b8c170f803d601fff8d2b876ce14518d59f70e (diff) |
iptables: Add patch to use cross ar and ranlib.
Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com>
Signed-off-by: Chris Larson <clarson@mvista.com>
Diffstat (limited to 'recipes/iptables/files')
-rw-r--r-- | recipes/iptables/files/cross-iptables.diff | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/recipes/iptables/files/cross-iptables.diff b/recipes/iptables/files/cross-iptables.diff new file mode 100644 index 0000000000..8027b07bca --- /dev/null +++ b/recipes/iptables/files/cross-iptables.diff @@ -0,0 +1,15 @@ +--- a/extensions/Makefile~ 2007-03-21 17:04:36.000000000 -0700 ++++ b/extensions/Makefile 2009-07-14 19:01:56.000000000 -0700 +@@ -80,10 +80,10 @@ + + ifdef NO_SHARED_LIBS + extensions/libext.a: $(EXT_OBJS) +- rm -f $@; ar crv $@ $(EXT_OBJS) ++ rm -f $@; $(AR) crv $@ $(EXT_OBJS); $(RANLIB) $@ + + extensions/libext6.a: $(EXT6_OBJS) +- rm -f $@; ar crv $@ $(EXT6_OBJS) ++ rm -f $@; $(AR) crv $@ $(EXT6_OBJS); $(RANLIB) $@ + + extensions/initext.o: extensions/initext.c + extensions/initext6.o: extensions/initext6.c |