llvm-toolchain/debian/clang-3.5.prerm
Sylvestre Ledru 49cd5acd48 * Switch from 3.4 to 3.5
* Standards-Version updated to 3.9.5
2013-11-20 20:38:03 +00:00

15 lines
341 B
Bash

#!/bin/sh
set -e
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
update-alternatives --quiet --remove cc /usr/bin/clang
update-alternatives --quiet --remove c89 /usr/bin/clang
update-alternatives --quiet --remove c99 /usr/bin/clang
update-alternatives --quiet --remove c++ /usr/bin/clang++
fi
#DEBHELPER#
exit 0