Fixed syntax errors in makefiles. Oops.

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

        * */Makefile.am: Fixed syntax errors in makefiles. Oops.
This commit is contained in:
Dave Neary
2003-12-16 21:06:03 +00:00
committed by David Neary
parent 63004292a1
commit c8e557ae81
8 changed files with 21 additions and 21 deletions

View File

@ -160,16 +160,15 @@ maintainer-clean-local: clean
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)
(installfiles=`echo $(srcdir)/html/*`; \
if test -f '$(srcdir)/html/index.sgml'; \
then
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' ; \
else echo '-- Nothing to install' ; \
fi)
uninstall-local: