blob: 0b4cf9c405f387779126f78de24416167f2c9965 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
# Ensure that the ld.so.conf file contains the xulrunner libs.
cp -f /etc/ld.so.conf /tmp/ld.so.conf
grep -v xulrunner /tmp/ld.so.conf > /etc/ld.so.conf
echo /usr/lib/xulrunner-1.9.1.1 >> /etc/ld.so.conf
/sbin/ldconfig
}
post_upgrade() {
post_install $*
}
|