mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-06-13 08:52:42 +00:00
15 lines
341 B
Bash
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
|