diff options
Diffstat (limited to 'debian/libgcj-common.postinst')
-rw-r--r-- | debian/libgcj-common.postinst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/debian/libgcj-common.postinst b/debian/libgcj-common.postinst new file mode 100644 index 0000000..de6d589 --- /dev/null +++ b/debian/libgcj-common.postinst @@ -0,0 +1,12 @@ +#! /bin/sh -e + +case "$1" in + configure) + docdir=/usr/share/doc/libgcj-common + if [ -d $docdir ] && [ ! -h $docdir ]; then + rm -rf $docdir + ln -s gcj-@BV@-base $docdir + fi +esac + +#DEBHELPER# |