/usr/src/gcc-4.7/debian/libgcjLGCJ.postrm is in gcc-4.7-source 4.7.4-3ubuntu12.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | #! /bin/sh -e
case "$1" in
remove|purge)
# only purge if no other library is installed.
if [ -z "$(ls /usr/lib/libgcj.so.@GCJ@* 2>/dev/null)" ]; then
rm -f /var/lib/gcj-@BV@/classmap.db
rmdir --ignore-fail-on-non-empty /var/lib/gcj-@BV@ 2>/dev/null || true
fi
esac
#DEBHELPER#
|