blob: c86150557d82c325cd99e10b796b903474f98b87 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
if [ "x${1}" = 'xremove' ]; then
if [ "x$(cat /etc/proteanos_arch)" = 'x@PKG_TARGET_ARCH@' ]; then
update-alternatives --remove ar /usr/bin/ar.binutils
update-alternatives --remove strings /usr/bin/strings.binutils
fi
fi
|