diff options
author | Robby Workman <rw@rlworkman.net> | 2010-05-11 19:46:48 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 19:46:48 +0200 |
commit | 3f5f8ce0517952609cc134e6ab4ce5be055b3c7d (patch) | |
tree | 936bb6586703a4b78ca012d46b5f33d101ef20fd /system/zisofs-tools/zisofs-tools.SlackBuild | |
parent | 4cb3e9a7426f744c49418547736303153963f6f5 (diff) | |
download | slackbuilds-3f5f8ce0517952609cc134e6ab4ce5be055b3c7d.tar.gz |
system/zisofs-tools: Updated for version 1.0.7
Diffstat (limited to 'system/zisofs-tools/zisofs-tools.SlackBuild')
-rw-r--r-- | system/zisofs-tools/zisofs-tools.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/zisofs-tools/zisofs-tools.SlackBuild b/system/zisofs-tools/zisofs-tools.SlackBuild index 3c3b9c3c82..d32ccb5c56 100644 --- a/system/zisofs-tools/zisofs-tools.SlackBuild +++ b/system/zisofs-tools/zisofs-tools.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for zisofs-tools -# Copyright 2006 Robby Workman (http://rlworkman.net) +# Copyright 2006-2007 Robby Workman (http://rlworkman.net) # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -29,7 +29,7 @@ VERSION=1.0.7 ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -CWD=`pwd` +CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} @@ -67,7 +67,7 @@ make INSTALLROOT=$PKG install || exit 1 ( cd $PKG/usr/man find . -type f -exec gzip -9 {} \; - for i in `find . -type l` ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + for i in $(find . -type l); do ln -s $(readlink $i).gz $i.gz ; rm $i ; done ) mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION |