aboutsummaryrefslogtreecommitdiff
path: root/debian/qemu-user-static.prerm.in
blob: 7e4863b14d3eec7a3e849be2d997c8afce33bccc (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh -e

BINFMT_TARGETS= # list of architectures is autogenerated from debian/rules

if [ "$1" = remove ] && [ -x /usr/sbin/update-binfmts ]; then
	for target in $BINFMT_TARGETS ; do
		update-binfmts --package qemu-user-static --remove qemu-$target /usr/bin/qemu-$target-static
	done
fi

#DEBHELPER#