summaryrefslogtreecommitdiffstats
path: root/source/n/tcpdump/tcpdump.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'source/n/tcpdump/tcpdump.SlackBuild')
-rwxr-xr-xsource/n/tcpdump/tcpdump.SlackBuild8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/n/tcpdump/tcpdump.SlackBuild b/source/n/tcpdump/tcpdump.SlackBuild
index 101eb45eb..a3f941586 100755
--- a/source/n/tcpdump/tcpdump.SlackBuild
+++ b/source/n/tcpdump/tcpdump.SlackBuild
@@ -66,13 +66,13 @@ rm -rf $TMP/libpcap-?.?.?
tar xvf $CWD/tcpdump-$VERSION.tar.xz || exit 1
cd tcpdump-$VERSION || exit 1
-find . -type d -name CVS -depth -exec rm -rf {} \;
+find . -type d -name CVS -depth -exec rm -rf {} \+
chown -R root:root .
find . \
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
- -exec chmod 755 {} \; -o \
+ -exec chmod 755 {} \+ -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
+ -exec chmod 644 {} \+
./configure \
--prefix=/usr \
@@ -101,7 +101,7 @@ find $PKG | xargs file | grep -e "executable" -e "shared object" \
# Compress man pages
( cd $PKG/usr/man
- find . -type f -exec gzip -9 {} \;
+ find . -type f -exec gzip -9 {} \+
for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
)