From: vsr Date: Fri, 1 Apr 2016 09:14:29 +0000 (+0300) Subject: Additional correction of autoconf's check procedure for GUI, according the the change... X-Git-Tag: V7_8_0a2~5 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=a9e16461aaec253a8033a41c75ed4940efb63069;p=modules%2Fgui.git Additional correction of autoconf's check procedure for GUI, according the the changes introduced with commit 3b72f693 --- diff --git a/adm_local/unix/config_files/check_GUI.m4 b/adm_local/unix/config_files/check_GUI.m4 index 8f20e3ed7..337f30334 100755 --- a/adm_local/unix/config_files/check_GUI.m4 +++ b/adm_local/unix/config_files/check_GUI.m4 @@ -53,9 +53,9 @@ else SALOME_GUI_DIR=${GUI_ROOT_DIR} else # search Salome binaries in PATH variable - AC_PATH_PROG(TEMP, SUITApp) + AC_PATH_PROG(TEMP, suitexe) if test "x${TEMP}" != "x" ; then - AC_MSG_RESULT(SUITApp was found at : ${TEMP}) + AC_MSG_RESULT(suitexe was found at : ${TEMP}) SALOME_BIN_DIR=`dirname ${TEMP}` SALOME_GUI_DIR=`cd ${SALOME_BIN_DIR}/../..; pwd` fi @@ -68,7 +68,7 @@ else # check GUI installation AC_CHECKING(for light GUI) - if test -f ${SALOME_GUI_DIR}/bin/salome/SUITApp ; then + if test -f ${SALOME_GUI_DIR}/bin/salome/suitexe ; then LightGUI_ok=yes AC_MSG_RESULT(Using SALOME GUI distribution in ${SALOME_GUI_DIR})