summaryrefslogtreecommitdiffstats
path: root/system/gxemul
diff options
context:
space:
mode:
author David Somero2010-05-19 08:49:07 +0200
committer David Somero2010-05-19 08:49:07 +0200
commit33f34f965a21dbe3183a58ba14e34fe0964e3791 (patch)
tree3f0bcd3a3a93ff412c0df663d5363c07ac4e12b0 /system/gxemul
parentd13903d73b518dd776f1b8488c21d8df7188adf7 (diff)
downloadslackbuilds-33f34f965a21dbe3183a58ba14e34fe0964e3791.tar.gz
system/gxemul: Fixed for bash4.
Diffstat (limited to 'system/gxemul')
-rw-r--r--system/gxemul/gxemul.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/system/gxemul/gxemul.SlackBuild b/system/gxemul/gxemul.SlackBuild
index 44047d77fb..3fc5047524 100644
--- a/system/gxemul/gxemul.SlackBuild
+++ b/system/gxemul/gxemul.SlackBuild
@@ -50,12 +50,8 @@ mkdir -p $PKG/usr/bin $PKG/usr/man/man1
install -m 0755 gxemul $PKG/usr/bin
install -m 0644 man/gxemul.1 $PKG/usr/man/man1
-( 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
find . -type f -exec gzip -9 {} \;