~openjdk/openjdk/openjdk7

433 by Damien Raude-Morvan
stubGenerator_sparc.cpp by using explicit class typedef
1
#!/bin/sh
2
3
set -e
31 by Matthias Klose
* Split out a openjdk-6-jre-headless package, depend on java-common,
4
5
basedir=/@basedir@
6
jre_tools='@jre_hl_tools@'
7
8
rm -f $basedir/jre/lib/@archdir@/client/classes.jsa
487 by Matthias Klose
openjdk-7 (7u9-2.3.5~pre1-1) experimental; urgency=low
9
rm -f $basedir/jre/lib/@archdir@/server/classes.jsa
31 by Matthias Klose
* Split out a openjdk-6-jre-headless package, depend on java-common,
10
188 by Matthias Klose
* Don't remove alternatives on upgrade.
11
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
12
    for i in $jre_tools; do
397 by Matthias Klose
* Merge debian packaging r490 from openjdk-6:
13
	update-alternatives --remove $i $basedir/jre/bin/$i
188 by Matthias Klose
* Don't remove alternatives on upgrade.
14
    done
31 by Matthias Klose
* Split out a openjdk-6-jre-headless package, depend on java-common,
15
279 by Matthias Klose
* Fix some lintian warnings.
16
    if which update-binfmts >/dev/null; then
188 by Matthias Klose
* Don't remove alternatives on upgrade.
17
	# try to remove and ignore the error
605 by Matthias Klose
- check-in remaining changes for 7u111-2.6.7-1 upload
18
	if [ -e /var/lib/binfmts/jar ]; then
279 by Matthias Klose
* Fix some lintian warnings.
19
	    update-binfmts --package @basename@ \
188 by Matthias Klose
* Don't remove alternatives on upgrade.
20
		--remove jar /usr/bin/jexec || true
21
	fi
101 by Torsten Werner
Update binfmt support to use the /usr/bin/jexec alternative symlink.
22
    fi
188 by Matthias Klose
* Don't remove alternatives on upgrade.
23
397 by Matthias Klose
* Merge debian packaging r490 from openjdk-6:
24
    update-alternatives --remove jexec $basedir/jre/lib/jexec
31 by Matthias Klose
* Split out a openjdk-6-jre-headless package, depend on java-common,
25
fi
26
27
#DEBHELPER#