diff options
Diffstat (limited to 'debian/gmm.postinst')
-rw-r--r-- | debian/gmm.postinst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/debian/gmm.postinst b/debian/gmm.postinst new file mode 100644 index 0000000..335f2dd --- /dev/null +++ b/debian/gmm.postinst @@ -0,0 +1,11 @@ +#!/bin/sh -e + +if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-remove" ] ; then + update-alternatives --install /usr/bin/gmm \ + gmm /usr/bin/gmm-tk 40 + + update-alternatives --install /usr/bin/gmm \ + gmm /usr/bin/gmm-gtk 50 +fi + +#DEBHELPER# |