diff options
author | dsomero <xgizzmo@gmail.com> | 2010-05-20 20:42:07 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-21 00:32:11 -0500 |
commit | cc7220b1b8f5c33535a0c6f11469bf261d26c21b (patch) | |
tree | ac4675eca09339d8087cf2d36e243eadcb091f0c /office/html2ps/doinst.sh | |
parent | d9e54ed348f4f77e3c6d417d08955fe726628c1e (diff) | |
download | slackbuilds-cc7220b1b8f5c33535a0c6f11469bf261d26c21b.tar.gz |
office/html2ps: Removed (build failure)
Diffstat (limited to 'office/html2ps/doinst.sh')
-rw-r--r-- | office/html2ps/doinst.sh | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/office/html2ps/doinst.sh b/office/html2ps/doinst.sh deleted file mode 100644 index b50d1fd817..0000000000 --- a/office/html2ps/doinst.sh +++ /dev/null @@ -1,19 +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... -} - -if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 -fi - -config etc/html2ps/html2psrc.new - |