]> oss.titaniummirror.com Git - cp210x.git/blobdiff - debian.in/postrm
Revamp build strategy
[cp210x.git] / debian.in / postrm
diff --git a/debian.in/postrm b/debian.in/postrm
deleted file mode 100755 (executable)
index 30f451d..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-
-NAME=xxPACKAGExx
-VERSION=xxDEBVERxx
-
-set -e
-
-case "$1" in
-    purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
-      depmod
-      if [ -d "/usr/src/$NAME-$VERSION" ]; then
-         echo "Removing old module source..."
-         rm -rf "/usr/src/$NAME-$VERSION"
-      fi
-    ;;
-
-    *)
-        echo "postrm called with unknown argument \`$1'" >&2
-        exit 1
-    ;;
-esac
-
-#DEBHELPER#
-
-exit 0
-