#!/bin/sh

set -e

if test "$1" = "configure"; then
	if command -v update-binfmts >/dev/null; then
        update-binfmts --import llvm-19-runtime.binfmt || true
    fi
fi


