Fixed long-standing gtk-doc problem caused by a problem with docbook-xml

2003-12-16  Dave Neary  <bolsh@gimp.org>

        * */Makefile.am: Fixed long-standing gtk-doc
        problem caused by a problem with docbook-xml installations,
        dodgy debian packages and suspect Makefile checks which
        makes "make install" work even if some gtk docs aren't
        correctly built.
This commit is contained in:
Dave Neary
2003-12-16 20:55:38 +00:00
committed by David Neary
parent e36c2a96c7
commit 5758978528
8 changed files with 33 additions and 21 deletions

View File

@ -160,15 +160,16 @@ maintainer-clean-local: clean
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)
(installfiles=`echo $(srcdir)/html/*`; \
if test "$$installfiles" = '$(srcdir)/html/*'; \
then echo '-- Nothing to install' ; \
else \
if test -f '$(srcdir)/html/index.sgml'; \
then
for i in $$installfiles; do \
echo '-- Installing '$$i ; \
$(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \
done; \
echo '-- Installing $(srcdir)/html/index.sgml' ; \
$(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR); \
else
echo '-- Nothing to install' ; \
fi)
uninstall-local: