ac8e077d0a
Make sure the post-install script only adds /usr/lib/xulrunner if it's not present.
7 lines
142 B
Bash
Executable File
7 lines
142 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -z "`grep "usr/lib/xulrunner" /etc/ld.so.conf`" ]; then
|
|
/bin/echo "/usr/lib/xulrunner" >> /etc/ld.so.conf
|
|
/sbin/ldconfig
|
|
fi
|