When executing "make install" under Fedora Core 3 and
under Cygwin (and, I presume, under other OS as well)
I see a harmless warning:

make: [install.info] Error 1 (ignored)

This patch (against the current CVS sources) fixes this
warning, if anyone is interested...

---

 wget/doc/Makefile.in |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

--- wget/doc/Makefile.in.orig   2005-06-05 16:01:06.500000000 +0200
+++ wget/doc/Makefile.in        2005-06-05 16:19:45.062500000 +0200
@@ -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



Reply via email to