blob: b9a2c53ba3c489c1b802ef6bf447cfe4fdc4b9bf (
plain)
1
2
3
4
5
6
7
8
9
10
|
if [ -x sbin/ldconfig ]; then
chroot . /sbin/ldconfig 2> /dev/null
fi
if [ -x /usr/bin/update-desktop-database ]; then
/usr/bin/update-desktop-database /usr/share/applications >/dev/null 2>&1
fi
|