summaryrefslogtreecommitdiff
path: root/audio/bristol/doinst.sh
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2011-08-26 19:03:23 -0300
committerNiels Horn <niels.horn@slackbuilds.org>2011-08-26 19:03:23 -0300
commitedcad06d1d5fa7354648d2cdf4bb1a17e0e83a09 (patch)
tree2984067feb5435d8a3f62a9a77211db4754fa813 /audio/bristol/doinst.sh
parent7ab8ff8f34347e0a1075b00900a56110e033b988 (diff)
downloadslackbuilds-edcad06d1d5fa7354648d2cdf4bb1a17e0e83a09.tar.gz
audio/bristol: Updated for version 0.60.8 (+new maintainer)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'audio/bristol/doinst.sh')
-rw-r--r--audio/bristol/doinst.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/audio/bristol/doinst.sh b/audio/bristol/doinst.sh
deleted file mode 100644
index 19a6ff6ac8..0000000000
--- a/audio/bristol/doinst.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-config() {
- NEW="$1"
- 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
- rm $NEW
- fi
- # Otherwise, we leave the .new copy for the admin to consider...
-}
-