aboutsummaryrefslogtreecommitdiffstats
path: root/debian/preinst
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@vega.ocn.ne.jp>2011-05-04 07:18:58 +0000
committerTatsuya Kinoshita <tats@vega.ocn.ne.jp>2011-05-04 07:18:58 +0000
commite96bb77ee5da15a17880860b5b203f03f67777e5 (patch)
treef9f9838584509c992a51635b56d361efee4e6b17 /debian/preinst
parentReleasing debian version 0.5.1-1 (diff)
downloadw3m-e96bb77ee5da15a17880860b5b203f03f67777e5.tar.gz
w3m-e96bb77ee5da15a17880860b5b203f03f67777e5.zip
Releasing debian version 0.5.1-3debian/0.5.1-3
Diffstat (limited to '')
-rw-r--r--debian/preinst21
1 files changed, 0 insertions, 21 deletions
diff --git a/debian/preinst b/debian/preinst
deleted file mode 100644
index 274d592..0000000
--- a/debian/preinst
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh -e
-
-case "$1" in
- install|upgrade)
- # Older versions of this package had the conffile in the wrong
- # location (the w3m binary didn't use it). Copy it if its there,
- # so any customisation done there can be preserved. We actually
- # get rid of the wrong file in our postinst.
- if dpkg --compare-versions "$2" lt-nl "0.4.2-1.1"; then
- if test -e /etc/w3m/w3mconfig; then
- if ! test -e /etc/w3m/config; then
- cp -a /etc/w3m/w3mconfig /etc/w3m/config
- fi
- fi
- fi
- ;;
- *)
-esac
-
-#DEBHELPER#
-