summaryrefslogtreecommitdiff
path: root/debian/libhx-dev.postinst
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 /debian/libhx-dev.postinst
parent09b52104464539249f34d3a8ef09a33141096709 (diff)
Remove now useless debian/libhx-dev.postinst
Diffstat (limited to 'debian/libhx-dev.postinst')
-rw-r--r--debian/libhx-dev.postinst40
1 files changed, 0 insertions, 40 deletions
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