Skip to content
Snippets Groups Projects
Commit c20663e4 authored by Jorrit Fahlke's avatar Jorrit Fahlke
Browse files

Fix shell logic for determining when doxygen is run

[[Imported from SVN: r6154]]
parent 3f9244cb
No related branches found
No related tags found
No related merge requests found
......@@ -49,8 +49,9 @@ DOXYGEN_DEPENDON = -name \*.cc -o -name \*.hh -o -name \*.png -o -name Doxyfile
# check dependency ourself to be robust
$(DOXYGENTAG): FORCE Doxyfile $(DOXYGENHEADER) $(DOXYGENFOOTER)
set -e; \
if test ! -f "$(DOXYGENTAG)" && ( test ! -e $(DOXYGENTAG) \
|| test x"`find $(top_srcdir) \( $(DOXYGEN_DEPENDON) \) -a -cnewer $(DOXYGENTAG) -print`" != x ); then \
if ! test -e "$(DOXYGENTAG)" || \
test x"`find $(top_srcdir) \( $(DOXYGEN_DEPENDON) \) -a -cnewer $(DOXYGENTAG) -print`" != x; \
then \
echo Running doxygen. This may take a while... ; \
$(DOXYGEN) Doxyfile > doxygen.log <&-; \
touch $(DOXYGENTAG) ; \
......
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