diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:30:41 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:30:41 -0400 |
commit | f286c06908d004f136a323355867bb58a70ecfbf (patch) | |
tree | 2e9f24c9dc5d76f5eef7570b6163b0c29f276d6d /academic | |
parent | 77efd920aaa2c8d1aaa943e51f2b48e21b9303bb (diff) | |
download | slackbuilds-f286c06908d004f136a323355867bb58a70ecfbf.tar.gz |
academic/ngspice: Fixed for bash4.
Diffstat (limited to 'academic')
-rw-r--r-- | academic/ngspice/ngspice.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/academic/ngspice/ngspice.SlackBuild b/academic/ngspice/ngspice.SlackBuild index ac2337ad49..d34dcadea5 100644 --- a/academic/ngspice/ngspice.SlackBuild +++ b/academic/ngspice/ngspice.SlackBuild @@ -78,12 +78,8 @@ cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \; -( 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 || true -) +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 find . -type f -exec gzip -9 {} \; |