summaryrefslogtreecommitdiff
path: root/debian/gcj-native-helper.preinst
blob: 51b90b6377a504f49e8cd25f7e5a4302b7095305 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/sh

set -e

if [ "$1" = upgrade ] && [ -n "$2" ] && dpkg --compare-versions "$2" lt 2:1.8-57~; then
    if [ -h /usr/share/doc/gcj-native-helper ]; then
	rm -f /usr/share/doc/gcj-native-helper
    fi
fi

#DEBHELPER#

exit 0