From: vsr Date: Wed, 2 Mar 2005 07:26:48 +0000 (+0000) Subject: Fix a bug with installing doxygen 1.3 from sources on Red Hat 9 - configure fails... X-Git-Tag: SALOME_V_2_2_1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=35c39e5b8ddf0e868a37c0c8dd7511d857486581;p=tools%2Finstall.git Fix a bug with installing doxygen 1.3 from sources on Red Hat 9 - configure fails because of incorrect check for install tool. --- diff --git a/config_files/doxygen-1.3-rc2.sh b/config_files/doxygen-1.3-rc2.sh index 6cf6fcf..0fe4380 100755 --- a/config_files/doxygen-1.3-rc2.sh +++ b/config_files/doxygen-1.3-rc2.sh @@ -65,7 +65,10 @@ check_jb tar xfz ${SOURCE_DIR}/doxygen-1.3-rc2.tar.gz -C ${INSTALL_WORK} cd ${PRODUCT_WORK} makedir ${PRODUCT_DIR} -check_job ${PRODUCT_DIR}/CONFIGURE.LOG configure --with-doxywizard --prefix ${PRODUCT_DIR} +# vsr: fix bug - configure fails on Red Hat 9 because of incorrect autodetect check for install tool +# so it is necessary to put it directly +f_install="--install "`which install` +check_job ${PRODUCT_DIR}/CONFIGURE.LOG configure --with-doxywizard --prefix ${PRODUCT_DIR} $f_install GCC=`which gcc` cat >> ${PRODUCT_DIR}/MAKE.LOG <