From: Felix Fietkau Date: Fri, 11 Dec 2009 02:09:21 +0000 (+0000) Subject: shorewall-lite: fix compile on non-GNU systems X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=a83ed62f903b8fe2ff34260bfe41578fdac69321;p=openwrt%2Fsvn-archive%2Farchive.git shorewall-lite: fix compile on non-GNU systems SVN-Revision: 18738 --- diff --git a/net/shorewall-lite/patches/120-portability.patch b/net/shorewall-lite/patches/120-portability.patch new file mode 100644 index 0000000000..dac3cd1e10 --- /dev/null +++ b/net/shorewall-lite/patches/120-portability.patch @@ -0,0 +1,20 @@ +--- a/install.sh ++++ b/install.sh +@@ -337,13 +337,15 @@ cd manpages + + for f in *.5; do + gzip -c $f > $f.gz +- run_install -D -m 644 $f.gz ${PREFIX}/usr/share/man/man5/$f.gz ++ run_install -d ${PREFIX}/usr/share/man/man5 ++ run_install -m 644 $f.gz ${PREFIX}/usr/share/man/man5/$f.gz + echo "Man page $f.gz installed to ${PREFIX}/usr/share/man/man5/$f.gz" + done + + for f in *.8; do + gzip -c $f > $f.gz +- run_install -D -m 644 $f.gz ${PREFIX}/usr/share/man/man8/$f.gz ++ run_install -d ${PREFIX}/usr/share/man/man8 ++ run_install -m 644 $f.gz ${PREFIX}/usr/share/man/man8/$f.gz + echo "Man page $f.gz installed to ${PREFIX}/usr/share/man/man8/$f.gz" + done +