diff --git a/Documentation/build-docs.sh b/Documentation/build-docs.sh index f387c7990c..44b43bf4f0 100755 --- a/Documentation/build-docs.sh +++ b/Documentation/build-docs.sh @@ -1,7 +1,11 @@ #!/bin/bash if [ "$ACTION" = "" ] ; then - doxygen Documentation/Doxyfile + if which -s doxygen ; then + doxygen Documentation/Doxyfile + else + echo "warning: Doxygen not found in PATH" + fi elif [ "$ACTION" = "clean" ] ; then rm -rf "$SRCROOT/Documentation/html" fi