build - Try using doxygen binary directly

This commit is contained in:
thephez 2018-01-25 15:45:12 -05:00
parent 3055957e76
commit 3b9279c211
2 changed files with 6 additions and 3 deletions

View file

@ -50,7 +50,7 @@ cp $TRAVIS_BUILD_DIR/doxygen/* doc/
##### Generate the Doxygen code documentation and log the output. ##### ##### Generate the Doxygen code documentation and log the output. #####
echo 'Generating Doxygen code documentation...' echo 'Generating Doxygen code documentation...'
# Redirect both stderr and stdout to the log file AND the console. # 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...' echo 'Done generating Doxygen code documentation...'
#cat doxygen.log #cat doxygen.log

View file

@ -5,5 +5,8 @@ wget -q http://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.14.linux.bin.tar.gz
echo "Decompressing..." echo "Decompressing..."
tar -xzf doxygen-1.8.14.linux.bin.tar.gz tar -xzf doxygen-1.8.14.linux.bin.tar.gz
echo "Configure and Install Doxygen" cp doxygen-1.8.14/bin/* ~
cd doxygen-1.8.14 && ./configure && sudo make install ls ~
#echo "Configure and Install Doxygen"
#cd doxygen-1.8.14 && ./configure && sudo make install