9 lines
171 B
Text
9 lines
171 B
Text
|
#!/bin/sh
|
||
|
if [ `whoami` != root ] ; then exit 0 ; fi
|
||
|
if grep -q /usr/local/lib /etc/ld.so.conf
|
||
|
then
|
||
|
echo > /dev/null
|
||
|
else
|
||
|
echo /usr/local/lib >> /etc/ld.so.conf
|
||
|
fi
|