diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:31:42 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:31:42 -0400 |
commit | 13294b07460d5a4070defec2b3e6436c31e0e974 (patch) | |
tree | b063ac0e27ac13d529ba5fb495de12513a4679f2 /desktop/afterstep/afterstep.SlackBuild | |
parent | aaf3b3aa5cbe25bdc526781de7ac3d43b62d8db8 (diff) | |
download | slackbuilds-13294b07460d5a4070defec2b3e6436c31e0e974.tar.gz |
desktop/afterstep: Fixed for bash4.
Diffstat (limited to 'desktop/afterstep/afterstep.SlackBuild')
-rw-r--r-- | desktop/afterstep/afterstep.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/desktop/afterstep/afterstep.SlackBuild b/desktop/afterstep/afterstep.SlackBuild index 05d0d4ae93..1ddb360972 100644 --- a/desktop/afterstep/afterstep.SlackBuild +++ b/desktop/afterstep/afterstep.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 # Take care of default xinitrc install -D -m 0755 $CWD/xinitrc.afterstep $PKG/etc/X11/xinit/xinitrc.afterstep |