diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:31:09 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:31:09 -0400 |
commit | 67296d014e439f30963578e906fa2871f5e53439 (patch) | |
tree | 70403482a2b53c00000c976586eda72661c4a6e6 | |
parent | 8027a63e5a4fe86b351b3edf7db68fc1ebe220c1 (diff) | |
download | slackbuilds-67296d014e439f30963578e906fa2871f5e53439.tar.gz |
audio/ices: Fixed for bash4.
-rw-r--r-- | audio/ices/ices.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/audio/ices/ices.SlackBuild b/audio/ices/ices.SlackBuild index 539857f1cb..6fded7b5e0 100644 --- a/audio/ices/ices.SlackBuild +++ b/audio/ices/ices.SlackBuild @@ -55,12 +55,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 # Create log directory ; file will be created in doinst.sh if needed mkdir -p $PKG/var/log/ices |