diff options
Diffstat (limited to 'system/cpufreqd/cpufreqd.SlackBuild')
-rw-r--r-- | system/cpufreqd/cpufreqd.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/cpufreqd/cpufreqd.SlackBuild b/system/cpufreqd/cpufreqd.SlackBuild index ac3030f5d2..0972c06ff9 100644 --- a/system/cpufreqd/cpufreqd.SlackBuild +++ b/system/cpufreqd/cpufreqd.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for cpufreqd -# 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=2.1.1 ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -CWD=`pwd` +CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} @@ -62,7 +62,7 @@ make install-strip DESTDIR=$PKG || 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 ) mv $PKG/etc/cpufreqd.conf $PKG/etc/cpufreqd.conf.new |