[geany/geany] 240b59: Fix distcheck
Colomban Wendling
git-noreply at xxxxx
Thu Feb 18 22:19:24 UTC 2016
Branch: refs/heads/master
Author: Colomban Wendling <ban at herbesfolles.org>
Committer: Colomban Wendling <ban at herbesfolles.org>
Date: Thu, 18 Feb 2016 22:19:24 UTC
Commit: 240b5903be6be32b4f5050878bc0263ecee84b25
https://github.com/geany/geany/commit/240b5903be6be32b4f5050878bc0263ecee84b25
Log Message:
-----------
Fix distcheck
We need to distribute the GtkDoc header generation script.
We need not to distribute the generated header, otherwise the VPATH
lookup would find the distributed one in $(srcdir) and try to update
it; but touching $(srcdir) is a bad thing.
Modified Paths:
--------------
Makefile.am
doc/Makefile.am
Modified: Makefile.am
1 lines changed, 1 insertions(+), 0 deletions(-)
===================================================================
@@ -15,6 +15,7 @@ WIN32_BUILD_FILES = \
EXTRA_DIST = \
autogen.sh \
+ scripts/gen-api-gtkdoc.py \
wscript \
waf \
geany.desktop.in \
Modified: doc/Makefile.am
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -128,7 +128,7 @@ geany-gtkdoc.h: Doxyfile.stamp $(top_srcdir)/scripts/gen-api-gtkdoc.py
ALL_TARGETS += geany-gtkdoc.h
geany_gtkdocincludedir = $(includedir)/geany/gtkdoc
-geany_gtkdocinclude_HEADERS = geany-gtkdoc.h
+nodist_geany_gtkdocinclude_HEADERS = geany-gtkdoc.h
endif
@@ -136,7 +136,7 @@ all-local: $(ALL_TARGETS)
clean-local: clean-api-docs-local
clean-api-docs-local:
- -rm -rf reference/ xml/ doxygen_* $(ALL_TARGETS)
+ -rm -rf reference/ xml/ doxygen_* Doxyfile-gi $(ALL_TARGETS)
endif
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
More information about the Commits
mailing list