llvm-toolchain/debian/llvm-X.Y-runtime.postinst.in
2021-11-10 22:11:03 +01:00

12 lines
197 B
Bash

#!/bin/sh
set -e
if test "$1" = "configure"; then
if command -v update-binfmts >/dev/null; then
update-binfmts --import llvm-@LLVM_VERSION@-runtime.binfmt || true
fi
fi
#DEBHELPER#