]> sjero.net Git - wget/commitdiff
[svn] Applied Keith Moore's patch to fix a harmless (but annoying) documentation...
authormtortonesi <devnull@localhost>
Mon, 6 Jun 2005 20:42:17 +0000 (13:42 -0700)
committermtortonesi <devnull@localhost>
Mon, 6 Jun 2005 20:42:17 +0000 (13:42 -0700)
doc/Makefile.in

index 9b4530ee0718093af0cfe4a3dcba46961d572d1c..d6db64a699e64822bb71df1af06e89c4a57cf6c9 100644 (file)
@@ -112,13 +112,15 @@ install.info: wget.info
        $(top_srcdir)/mkinstalldirs $(DESTDIR)$(infodir)
        -if test -f wget.info; then \
          for file in wget.info wget.info-*[0-9]; do \
-           test -f "$$file" && \
+            if test -f "$$file"; then \
              $(INSTALL_DATA) "$$file" "$(DESTDIR)$(infodir)/$$file" ; \
+           fi; \
          done; \
        else \
          for file in $(srcdir)/wget.info $(srcdir)/wget.info-*[0-9]; do \
-           test -f "$$file" && \
+            if test -f "$$file"; then \
              $(INSTALL_DATA) "$$file" "$(DESTDIR)$(infodir)/`basename $$file`" ; \
+           fi; \
          done; \
        fi