aboutsummaryrefslogtreecommitdiff
path: root/network/muttng/muttng.SlackBuild
diff options
context:
space:
mode:
authorMartin Lefebvre <dadexter@gmail.com>2010-05-11 19:45:57 +0200
committerErik Hanson <erik@slackbuilds.org>2010-05-11 19:45:57 +0200
commit7339ef7a945645e47e741f32eacc875be07e0092 (patch)
treeb20ea1a488eb9b66771bdec8c5f4dfea361ee9b2 /network/muttng/muttng.SlackBuild
parent6ac329997c30473276230442c9c1bf3c8ee9b981 (diff)
network/muttng: Updated for version cvs
Diffstat (limited to 'network/muttng/muttng.SlackBuild')
-rw-r--r--network/muttng/muttng.SlackBuild6
1 files changed, 3 insertions, 3 deletions
diff --git a/network/muttng/muttng.SlackBuild b/network/muttng/muttng.SlackBuild
index 8c99f425fbfe4..88961bd36569b 100644
--- a/network/muttng/muttng.SlackBuild
+++ b/network/muttng/muttng.SlackBuild
@@ -31,7 +31,7 @@ VERSION=latest # This will be reset below; leave this value alone
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
-CWD=`pwd`
+CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
@@ -44,7 +44,7 @@ fi
# Version taken from dirname inside latest daily snapshot
if [ -e $CWD/$PRGNAM-latest.tar.gz ]; then
- VERSION=`tar -tzf $CWD/$PRGNAM-latest.tar.gz | head -1 | tr -d \/ | cut -d- -f2`
+ VERSION=$(tar -tzf $CWD/$PRGNAM-latest.tar.gz | head -1 | tr -d \/ | cut -d- -f2)
else
echo "Source tarball not present - exiting."
exit 1
@@ -82,7 +82,7 @@ make install DESTDIR=$PKG
if [ -d $PKG/usr/man ]; then
( 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
)
fi