Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Sun, 27 Apr 2014 16:37:59 UTC Commit: bde741ab433e4f4c1e11601940abb3ede6839023 https://github.com/geany/geany/commit/bde741ab433e4f4c1e11601940abb3ede68390...
Log Message: ----------- Fix doc/Doxyfile.stamp rule portability
$< is only portable in suffix rules, so don't use it there.
Modified Paths: -------------- doc/Makefile.am
Modified: doc/Makefile.am 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -61,7 +61,7 @@ doxygen_sources = \ $(top_srcdir)/tagmanager/src/tm_workspace.[ch]
$(builddir)/Doxyfile.stamp: $(builddir)/Doxyfile $(doxygen_sources) - $(AM_V_GEN)$(DOXYGEN) $< && echo "" > $@ + $(AM_V_GEN)$(DOXYGEN) Doxyfile && echo "" > $@
all-local: $(builddir)/Doxyfile.stamp
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).