aboutsummaryrefslogtreecommitdiffstats
path: root/lang/linux-libgcc/pkg-deinstall
blob: 248f3eea912746eed2ceadd49e8549980d1298bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

[ "$2" != "POST-DEINSTALL" ] && exit 0

if grep -q '^/lib/libgcc$' $PKG_PREFIX/etc/ld.so.conf; then
    grep -v '^/lib/libgcc$' $PKG_PREFIX/etc/ld.so.conf > $PKG_PREFIX/etc/ld.so.conf.tmp || exit 1
    mv -f $PKG_PREFIX/etc/ld.so.conf.tmp $PKG_PREFIX/etc/ld.so.conf || exit 1
fi

$PKG_PREFIX/sbin/ldconfig || true