diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-10-09 17:47:55 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-10-09 17:47:55 +0000 |
commit | 356ec178f083b59f763faa577354e7591f2ab2c9 (patch) | |
tree | 4ddd403e9192ef279ae0ebd92e5e250eeacbdf3d /package/iptables/patches | |
parent | 2cf31be8576034647d2c9eaeee58a56c789463f9 (diff) | |
download | upstream-356ec178f083b59f763faa577354e7591f2ab2c9.tar.gz upstream-356ec178f083b59f763faa577354e7591f2ab2c9.tar.bz2 upstream-356ec178f083b59f763faa577354e7591f2ab2c9.zip |
iptables: don't use /bin/bash in autogen.sh, breaks FreeBSD. Also move autogen.sh invocation to Build/Configure
SVN-Revision: 23369
Diffstat (limited to 'package/iptables/patches')
-rw-r--r-- | package/iptables/patches/100-bash-location.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/package/iptables/patches/100-bash-location.patch b/package/iptables/patches/100-bash-location.patch new file mode 100644 index 0000000000..818246e76b --- /dev/null +++ b/package/iptables/patches/100-bash-location.patch @@ -0,0 +1,16 @@ +--- a/autogen.sh ++++ b/autogen.sh +@@ -1,4 +1,4 @@ +-#!/bin/bash ++#!/usr/bin/env bash + + autoreconf -fi; + rm -Rf autom4te*.cache; +--- a/iptables-apply ++++ b/iptables-apply +@@ -1,4 +1,4 @@ +-#!/bin/bash ++#!/usr/bin/env bash + # + # iptables-apply -- a safer way to update iptables remotely + # |