From 3b9279c2119fe3cbd75e18b6d6d1126cccfa1e76 Mon Sep 17 00:00:00 2001 From: thephez Date: Thu, 25 Jan 2018 15:45:12 -0500 Subject: [PATCH] build - Try using doxygen binary directly --- scripts/generateDocumentationAndDeploy.sh | 2 +- scripts/install-doxygen.sh | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/scripts/generateDocumentationAndDeploy.sh b/scripts/generateDocumentationAndDeploy.sh index 687674de..864ec432 100644 --- a/scripts/generateDocumentationAndDeploy.sh +++ b/scripts/generateDocumentationAndDeploy.sh @@ -50,7 +50,7 @@ cp $TRAVIS_BUILD_DIR/doxygen/* doc/ ##### Generate the Doxygen code documentation and log the output. ##### echo 'Generating Doxygen code documentation...' # Redirect both stderr and stdout to the log file AND the console. -doxygen $DOXYFILE 2>&1 | tee doxygen.log +~/doxygen $DOXYFILE 2>&1 | tee doxygen.log echo 'Done generating Doxygen code documentation...' #cat doxygen.log diff --git a/scripts/install-doxygen.sh b/scripts/install-doxygen.sh index 74acc351..80ef3b31 100644 --- a/scripts/install-doxygen.sh +++ b/scripts/install-doxygen.sh @@ -5,5 +5,8 @@ wget -q http://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.14.linux.bin.tar.gz echo "Decompressing..." tar -xzf doxygen-1.8.14.linux.bin.tar.gz -echo "Configure and Install Doxygen" -cd doxygen-1.8.14 && ./configure && sudo make install +cp doxygen-1.8.14/bin/* ~ +ls ~ + +#echo "Configure and Install Doxygen" +#cd doxygen-1.8.14 && ./configure && sudo make install