summaryrefslogtreecommitdiff
path: root/debian/gcc-BV-hppa64.postinst
blob: a70af394535ec6a646ce669a48d117acc717e59e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#! /bin/sh -e

prio=$(echo @BV@ | sed 's/\.//g')

for i in cpp gcc gcc-ar gcc-nm gcc-ranlib; do
    update-alternatives --quiet \
	--install /usr/bin/hppa64-linux-gnu-$i \
		hppa64-linux-gnu-$i \
		/usr/bin/hppa64-linux-gnu-$i-@BV@ \
		$prio
done

#DEBHELPER#

exit 0