summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorJohan Dahlin <johan@src.gnome.org>2006-08-28 21:14:14 +0000
committerJohan Dahlin <johan@src.gnome.org>2006-08-28 21:14:14 +0000
commit7d4b9223b39a4724c67d4b2ea425f569f4eaa8cf (patch)
treed7822ee8e25b427989d6699ecb1c4a620f33960f /docs
parent6051e3958774dcebe0134a0c92d618434ecdc066 (diff)
downloadpygobject-7d4b9223b39a4724c67d4b2ea425f569f4eaa8cf.tar.gz
pygobject-7d4b9223b39a4724c67d4b2ea425f569f4eaa8cf.tar.xz
pygobject-7d4b9223b39a4724c67d4b2ea425f569f4eaa8cf.zip
Install html files regardless even when passing in --disable-docs, fixes
* docs/Makefile.am: Install html files regardless even when passing in --disable-docs, fixes #353159 (Matthias Clasen)
Diffstat (limited to 'docs')
-rw-r--r--docs/Makefile.am10
1 files changed, 6 insertions, 4 deletions
diff --git a/docs/Makefile.am b/docs/Makefile.am
index a3c68d1..0c50aee 100644
--- a/docs/Makefile.am
+++ b/docs/Makefile.am
@@ -5,7 +5,6 @@ BUILDDIR = $(top_builddir)/docs
CSS_FILES = style.css
-if ENABLE_DOCS
HTML_FILES = \
html/class-gobjectgboxed.html \
html/class-gobjectginterface.html \
@@ -21,8 +20,11 @@ HTML_FILES = \
html/pygobject.devhelp \
html/pygobject-introduction.html \
html/pygobject-reference-copyright.html
+
+if ENABLE_DOCS
+BUILT_HTML_FILES = $(HTML_FILES)
else
-HTML_FILES =
+BUILT_HTML_FILES =
endif
XML_FILES = \
@@ -59,9 +61,9 @@ HTML_DATA = $(HTML_FILES)
XSLdir = $(datadir)/pygobject/xsl
XSL_DATA = $(XSL_FILES) $(FIXXREF)
-BUILT_SOURCES = reference/builddate.xml $(HTML_FILES)
+BUILT_SOURCES = reference/builddate.xml $(BUILT_HTML_FILES)
-CLEANFILES = reference/builddate.xml $(HTML_FILES)
+CLEANFILES = reference/builddate.xml $(BUILT_HTML_FILES)
EXTRA_DIST = \
$(HTML_FILES) \