|
|
|
#!/bin/sh -e
if [ "$1" = upgrade -a "$2" ]; then
if dpkg --compare-versions "$2" lt '6.2.6-17'; then
# Remove old alternatives pointing to the X11R6 directories
update-alternatives --remove x-terminal-emulator /usr/X11R6/bin/wterm
fi
if dpkg --compare-versions "$2" lt '6.2.9-6'; then
pkg=wterm
if [ -L /usr/doc/$pkg ]; then rm -f /usr/doc/$pkg; fi
fi
fi
| Results 1 - 1 |