12345678910111213141516171819202122 |
- #!/bin/sh
- set -e
- FLAVOR=@DEB_FLAVOR@
- MAJOR=@MAJOR_VERSION@
- MINOR=@MINOR_VERSION@
- FULL=@FULL_VERSION@
- ALTERNATIVES="@ALTERNATIVES@"
- # update-alternatives on things that collide with xemacs, other editors
- if [ "$1" != "upgrade" ]
- then
- for i in ${ALTERNATIVES}
- do
- update-alternatives --remove $i /usr/bin/$i.${FLAVOR}
- done
- fi
- #DEBHELPER#
|