Skip to content
Snippets Groups Projects
Commit 0f9dd028 authored by Markus Blatt's avatar Markus Blatt
Browse files

Fall back to message and creation of empty Doxy file as doxygen should

not be a prerequisite for Dune.

[[Imported from SVN: r5575]]
parent 481017ea
No related branches found
No related tags found
No related merge requests found
...@@ -602,7 +602,15 @@ mkdir "$PROJECT/doc/doxygen" ...@@ -602,7 +602,15 @@ mkdir "$PROJECT/doc/doxygen"
#################### template Doxyfile ######################## #################### template Doxyfile ########################
echo "- $PROJECT/doc/doxygen/Doxyfile" echo "- $PROJECT/doc/doxygen/Doxyfile"
doxygen -g "$PROJECT/doc/doxygen/Doxyfile" > /dev/null if [ "x`which doxygen`" == "x" ]; then
echo "Doxygen is not installed! Creating empty file $PROJECT/doc/doxygen/Doxyfile"
echo "You might want to install doxygen and call "
echo "doxygen -g \"$PROJECT/doc/doxygen/Doxyfile\""
echo "manually later."
echo /dev/null > $PROJECT/doc/doxygen/Doxyfile
else
doxygen -g "$PROJECT/doc/doxygen/Doxyfile" > /dev/null
fi
################# doc/doxygen/Makefile.am ##################### ################# doc/doxygen/Makefile.am #####################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment