diff options
Diffstat (limited to 'academic/xdrawchem/xdrawchem.SlackBuild')
-rw-r--r-- | academic/xdrawchem/xdrawchem.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/academic/xdrawchem/xdrawchem.SlackBuild b/academic/xdrawchem/xdrawchem.SlackBuild index 699e7eda0a..c25fed996a 100644 --- a/academic/xdrawchem/xdrawchem.SlackBuild +++ b/academic/xdrawchem/xdrawchem.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for xdrawchem -# 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 @@ -27,9 +27,9 @@ PRGNAM=xdrawchem VERSION=1.9.9 ARCH=${ARCH:-i486} -BUILD=${BUILD:-5} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -CWD=`pwd` +CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} @@ -76,7 +76,7 @@ find $PKG/usr/doc -type f -exec chmod 644 {} \; ( 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/install |