diff options
Diffstat (limited to 'libraries/qt3/doinst.sh')
-rw-r--r-- | libraries/qt3/doinst.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libraries/qt3/doinst.sh b/libraries/qt3/doinst.sh new file mode 100644 index 0000000000..d57fb03194 --- /dev/null +++ b/libraries/qt3/doinst.sh @@ -0,0 +1,9 @@ +## This was causing problems compiling KDE for unknown reasons. +## So, we'll symlink the libraries into /opt/kde3 again... +# Add QT library directory to /etc/ld.so.conf: +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 +if [ -x /sbin/ldconfig ]; then + /sbin/ldconfig 2> /dev/null +fi |