From 35c39e5b8ddf0e868a37c0c8dd7511d857486581 Mon Sep 17 00:00:00 2001 From: vsr Date: Wed, 2 Mar 2005 07:26:48 +0000 Subject: [PATCH] Fix a bug with installing doxygen 1.3 from sources on Red Hat 9 - configure fails because of incorrect check for install tool. --- config_files/doxygen-1.3-rc2.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 <