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

[release,bugfix] Fixes running the doxygen documentatio with every make call.

The cause for the problem was the introduction of cmake/modules. This caused
the find statement to always print something. This patch simply excludes
cmake/modules from the result with grep -v.
parent 6a2cf7da
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ $(DOXYGENTAG): FORCE Doxyfile $(DOXYGENHEADER) $(DOXYGENFOOTER)
DTAG=$(DOXYGENTAG); \
if test -f $(srcdir)/$(DOXYGENTAG); then DTAG=$(srcdir)/$(DOXYGENTAG); fi; \
if ! test -e "$$DTAG" || \
test x"`find $(top_srcdir) \( $(DOXYGEN_DEPENDON) \) -a -cnewer $$DTAG -print`" != x; \
test x"`find $(top_srcdir) \( $(DOXYGEN_DEPENDON) \) -a -cnewer $$DTAG -print | grep -v cmake/modules`" != x; \
then \
echo Running doxygen. This may take a while... ; \
$(DOXYGEN) Doxyfile > doxygen.log <&-; \
......
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