diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2011-03-30 22:40:03 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-04-03 09:35:35 -0500 |
commit | 463b31216a452608c0b2f721ca75f12f8648a508 (patch) | |
tree | 3b740f8717d63d211fc3c59896cca876327a1d12 /office/apvlv/doinst.sh | |
parent | b61446711e65b94667a81bd009268393f158378a (diff) | |
download | slackbuilds-463b31216a452608c0b2f721ca75f12f8648a508.tar.gz |
office/apvlv: Removed (build failure re poppler api changes)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'office/apvlv/doinst.sh')
-rw-r--r-- | office/apvlv/doinst.sh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/office/apvlv/doinst.sh b/office/apvlv/doinst.sh deleted file mode 100644 index c8eb9f73c9..0000000000 --- a/office/apvlv/doinst.sh +++ /dev/null @@ -1,15 +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/apvlvrc.new - |