summaryrefslogtreecommitdiff
path: root/debian/llvm-X.Y-runtime.postinst.in
blob: 987b3ea2d20025333142b84f7fb031457b2deea7 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

if test "$1" = "configure"; then
    if test -x /usr/sbin/update-binfmts; then
        update-binfmts --import llvm-@LLVM_VERSION@-runtime.binfmt || true
    fi
fi

#DEBHELPER#