From: vsr Date: Fri, 23 Dec 2005 08:56:06 +0000 (+0000) Subject: Fix problems with native qt caused by latest integrations X-Git-Tag: V_3_1_0_Debian~2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=6d0ac6a4505c977f0bf5ced89932f757543db45b;p=tools%2Finstall.git Fix problems with native qt caused by latest integrations --- diff --git a/config_files/qt-3.3.4.sh b/config_files/qt-3.3.4.sh index db297cd..dc281b8 100755 --- a/config_files/qt-3.3.4.sh +++ b/config_files/qt-3.3.4.sh @@ -26,7 +26,13 @@ make_env ${INSTALL_ROOT} ${INSTALL_WORK} "${PRODUCT_SEQUENCE}" # looks for the native product and collects it's environment (used by make_env()) try_native(){ -qtdir="`find_in_path libqt-mt.so.3.3 /usr/share/qt3/lib`" +qtdir="" +if [ -d /usr/share/qt3/lib ] ; then + qtdir="`find_in_path libqt-mt.so.3.3 /usr/share/qt3/lib`" +fi +if [ -z "${qtdir}" ] && [ -d /usr/lib/qt3/lib ] ; then + qtdir="`find_in_path libqt-mt.so.3.3 /usr/lib/qt3/lib`" +fi if [ -z "${qtdir}" ] ; then qtdir="`find_in_path libqt-mt.so.3.3 /usr/lib`" fi