aboutsummaryrefslogtreecommitdiff
path: root/network/irda-utils/doinst.sh
diff options
context:
space:
mode:
authorMichael Wagner <lapinours@web.de>2010-05-13 00:36:49 +0200
committerRobby Workman <rworkman@slackbuilds.org>2010-05-13 00:36:49 +0200
commit403abc707239f3b18d9f65225cab4106c7840944 (patch)
tree94867b27c043f7950e0c712f3c4a86f82a25f31a /network/irda-utils/doinst.sh
parent211924047cfb05cbf4c07e882dabc30023e3373b (diff)
network/irda-utils: Updated for version 0.9.18
Diffstat (limited to 'network/irda-utils/doinst.sh')
-rw-r--r--network/irda-utils/doinst.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/network/irda-utils/doinst.sh b/network/irda-utils/doinst.sh
index 871edf1d6f801..6487cd302a017 100644
--- a/network/irda-utils/doinst.sh
+++ b/network/irda-utils/doinst.sh
@@ -1,10 +1,10 @@
config() {
NEW="$1"
- OLD="`dirname $NEW`/`basename $NEW .new`"
+ OLD="$(dirname $NEW)/$(basename $NEW .new)"
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
- elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then # toss the redundant copy
+ elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then # toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...