llvm-toolchain/debian/llvm-3.5-runtime.prerm.in
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

17 lines
533 B
Bash

#!/bin/sh -e
if test "$1" = "remove"; then
if test -x /usr/sbin/update-binfmts; then
update-binfmts --package llvm-@LLVM_VERSION@-runtime \
--remove llvm-@LLVM_VERSION@-runtime.binfmt /usr/bin/lli-@LLVM_VERSION@ || true
if test -f /var/lib/binfmts/llvm-@LLVM_VERSION@.binfmt; then
# Purge old file
update-binfmts --package llvm-@LLVM_VERSION@-runtime \
--remove llvm-@LLVM_VERSION@.binfmt /usr/bin/lli-@LLVM_VERSION@ || true
fi
fi
fi
#DEBHELPER#