diff options
Diffstat (limited to 'system/mrxvt/doinst.sh')
-rw-r--r-- | system/mrxvt/doinst.sh | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/system/mrxvt/doinst.sh b/system/mrxvt/doinst.sh index 5c2cb485e8..bdee9c86f1 100644 --- a/system/mrxvt/doinst.sh +++ b/system/mrxvt/doinst.sh @@ -1,10 +1,11 @@ + 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 + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then # toss the redundant copy rm $NEW fi @@ -16,7 +17,3 @@ config etc/mrxvt/submenus.menu.new config etc/mrxvt/mrxvtrc.new config etc/mrxvt/mrxvtrc.sample.new -if [ -x usr/bin/update-desktop-database ]; then - ./usr/bin/update-desktop-database ./usr/share/applications >/dev/null 2>&1 -fi - |