mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
a250a2c70a
Signed-off-by: B. Watson <yalhcru@gmail.com>
6 lines
203 B
Bash
6 lines
203 B
Bash
# Add QT library directory to /etc/ld.so.conf:
|
|
if [ -e etc/ld.so.conf ]; then
|
|
if ! grep /opt/kde3/lib etc/ld.so.conf 1> /dev/null 2> /dev/null ; then
|
|
echo "/opt/kde3/lib" >> etc/ld.so.conf
|
|
fi
|
|
fi
|