don't install html docs if they haven't been built

Original commit message from CVS:
don't install html docs if they haven't been built
This commit is contained in:
Benjamin Otte 2003-11-14 18:37:23 +00:00
parent 34888f9abe
commit 6fa7bf0307
2 changed files with 10 additions and 2 deletions

View file

@ -196,8 +196,9 @@ distclean-local: clean
rm -f *.stamp || true
# thomas: make docs parallel installable; devhelp requires majorminor too
if DOC_HTML
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)
$(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)
(installfiles=`echo $(srcdir)/html/*.html $(srcdir)/html/*.png`; \
if test "$$installfiles" = '$(srcdir)/html/*.html'; \
then echo '-- Nothing to install' ; \
@ -211,7 +212,10 @@ install-data-local:
$(DESTDIR)$(TARGET_DIR)/$(DOC_MODULE)-@GST_MAJORMINOR@.devhelp; \
echo '-- Installing $(srcdir)/html/index.sgml' ; \
$(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR); \
fi)
fi)
else
install-data-local:
endif
#
# Require gtk-doc when making dist

View file

@ -193,6 +193,7 @@ distclean-local: clean
rm -f $(DOC_MODULE).hierarchy
rm -f *.stamp || true
if DOC_HTML
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)
(installfiles=`echo $(srcdir)/html/*.html $(srcdir)/html/*.png`; \
@ -209,6 +210,9 @@ install-data-local:
echo '-- Installing $(srcdir)/html/index.sgml' ; \
$(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR); \
fi)
else
install-data-local:
endif
#
# Require gtk-doc when making dist