summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackware.com>2010-05-14 23:43:44 +0200
committer Robby Workman <rworkman@slackware.com>2010-05-14 23:43:44 +0200
commit0d01069cb41437861ab7083b2c951d7231bbb617 (patch)
tree69816336540fe0c7c22b2c3adbedbe5f46ec4ecc /network
parent260343d18881715c2bc6618849f9f557db6e80fb (diff)
downloadslackbuilds-0d01069cb41437861ab7083b2c951d7231bbb617.tar.gz
slackbuilds-0d01069cb41437861ab7083b2c951d7231bbb617.tar.xz
network/aria2: Minor build fix wrt bash4.
Diffstat (limited to 'network')
-rw-r--r--network/aria2/aria2.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/network/aria2/aria2.SlackBuild b/network/aria2/aria2.SlackBuild
index 60814b3559..e72960b0c8 100644
--- a/network/aria2/aria2.SlackBuild
+++ b/network/aria2/aria2.SlackBuild
@@ -61,12 +61,8 @@ CXXFLAGS="$SLKCFLAGS" \
make
make install DESTDIR=$PKG
-( cd $PKG
- find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
- xargs strip --strip-unneeded 2> /dev/null || true
- find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
- xargs strip --strip-unneeded 2> /dev/null
-)
+find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
+ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
( cd $PKG/usr/man || exit 1
find . -type f -exec gzip -9 {} \;