prerm is in gcj-4.9-jdk 4.9.3-13ubuntu2.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 | #! /bin/sh -e
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
update-alternatives --quiet --remove javac /usr/bin/gcj-wrapper-4.9
update-alternatives --quiet --remove jar /usr/bin/gjar-4.9
update-alternatives --quiet --remove jarsigner /usr/bin/gjarsigner-4.9
update-alternatives --quiet --remove javah /usr/bin/gjavah-4.9
update-alternatives --quiet --remove javadoc /usr/bin/gjdoc-4.9
update-alternatives --quiet --remove native2ascii /usr/bin/gnative2ascii-4.9
update-alternatives --quiet --remove rmic /usr/bin/grmic-4.9
update-alternatives --quiet --remove serialver /usr/bin/gserialver-4.9
update-alternatives --quiet --remove tnameserv /usr/bin/gtnameserv-4.9
fi
|