diff options
author | David Spencer <idlemoor@slackbuilds.org> | 2017-08-09 22:43:21 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-08-12 06:57:49 +0700 |
commit | 8eee5fba1b98343c1b82d5c41752a03d235ba6a2 (patch) | |
tree | 2d09ee133fd879ac74e1bdf1cd5ff9faf1a9c986 /libraries/allegro/doinst.sh | |
parent | 19d4e831bf996c3b179592fe75e66bd79f053c5e (diff) |
libraries/allegro: Deleted doinst.sh.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'libraries/allegro/doinst.sh')
-rw-r--r-- | libraries/allegro/doinst.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libraries/allegro/doinst.sh b/libraries/allegro/doinst.sh deleted file mode 100644 index 5e444b85f3fe0..0000000000000 --- a/libraries/allegro/doinst.sh +++ /dev/null @@ -1,14 +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... -} - -config etc/allegro.cfg.new |