From a83ed62f903b8fe2ff34260bfe41578fdac69321 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Fri, 11 Dec 2009 02:09:21 +0000 Subject: [PATCH] shorewall-lite: fix compile on non-GNU systems SVN-Revision: 18738 --- .../patches/120-portability.patch | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 net/shorewall-lite/patches/120-portability.patch 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 + -- 2.30.2