summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2018-09-06 15:25:50 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2018-09-06 15:25:50 +0200
commit2a52bf963eec3711eac8c9bfaca69abac1a276a9 (patch)
tree51118df441d4ac6fd293a5bb9c6dfdcd34578b8b
parent09b52104464539249f34d3a8ef09a33141096709 (diff)
Remove now useless debian/libhx-dev.postinst
-rw-r--r--debian/changelog1
-rw-r--r--debian/libhx-dev.postinst40
2 files changed, 1 insertions, 40 deletions
diff --git a/debian/changelog b/debian/changelog
index 9f8e2f3..0f1fd08 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ libhx (3.23-1) UNRELEASED; urgency=medium
- Remove --with autoreconf from debian/rules.
* New README.source to explain the branching model used.
* Declare compliance with Debian Policy 4.2.1 (No changes needed).
+ * Remove now useless debian/libhx-dev.postinst.
* debian/control:
- Change VCS-* to point to the new repository.
- Change Priority extra to optional.
diff --git a/debian/libhx-dev.postinst b/debian/libhx-dev.postinst
deleted file mode 100644
index 0c6905d..0000000
--- a/debian/libhx-dev.postinst
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/sh
-# postinst script for libhx-dev
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * <postinst> `configure' <most-recently-configured-version>
-# * <old-postinst> `abort-upgrade' <new version>
-# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
-# <new-version>
-# * <postinst> `abort-remove'
-# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
-# <failed-install-package> <version> `removing'
-# <conflicting-package> <version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
- configure)
- ldconfig
- ;;
-
- abort-upgrade|abort-remove|abort-deconfigure)
- ;;
-
- *)
- echo "postinst called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0