blob: 2564b8141b9125ce17a311af486408987edae726 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /bin/sh
set -e
# Remove fpc from pc alternative if buggy 2.0.0-{1,2} versions are upgraded
if [ "$1" = "upgrade" ] && [ "$2" = "2.0.0-1" ] || [ "$2" = "2.0.0-2" ]; then
update-alternatives --remove pc /usr/bin/fpc
fi
# Debhelper code
#DEBHELPER#
|