]> sjero.net Git - wget/commitdiff
[svn] Allow building in a separate tree when writing to source tree is impossible.
authorhniksic <devnull@localhost>
Thu, 13 May 2004 12:32:20 +0000 (05:32 -0700)
committerhniksic <devnull@localhost>
Thu, 13 May 2004 12:32:20 +0000 (05:32 -0700)
doc/ChangeLog
doc/Makefile.in

index 98e5686396c71abc247988225e5d30079099cad8..7894426a368dadb87500abe530c564c8a4f6f740 100644 (file)
@@ -1,3 +1,8 @@
+2004-05-13  Nico R.  <n-roeser@gmx.net>
+
+       * Makefile.in: Allow building in a separate tree with source tree
+       write-protected.
+
 2004-02-22  Hrvoje Niksic  <hniksic@xemacs.org>
 
        * wget.texi (Contributors): Updated.
index 92c3b04e937f68d7fd0152e95f684daf826d3dab..76e161cdda03df6ebaa5428d059e523a21a48143 100644 (file)
@@ -48,7 +48,7 @@ INSTALL      = @INSTALL@
 INSTALL_DATA = @INSTALL_DATA@
 RM = rm -f
 
-TEXI2POD     = $(srcdir)/texi2pod.pl
+TEXI2POD     = texi2pod.pl
 POD2MAN      = @POD2MAN@
 MAN          = wget.$(manext)
 WGETRC       = $(sysconfdir)/wgetrc
@@ -68,12 +68,12 @@ $(SAMPLERCTEXI): $(srcdir)/sample.wgetrc
 wget.info: $(srcdir)/wget.texi $(SAMPLERCTEXI)
        $(MAKEINFO) -I$(srcdir) $<
 
-$(TEXI2POD): $(TEXI2POD).in
+$(TEXI2POD): $(srcdir)/$(TEXI2POD).in
        sed 's,^#! /usr/bin/perl,#! @PERL@,' $? > $@
        chmod u+x $@
 
 wget.pod: $(srcdir)/wget.texi $(TEXI2POD)
-       $(TEXI2POD) $(srcdir)/wget.texi $@
+       ./$(TEXI2POD) $(srcdir)/wget.texi $@
 
 $(MAN): wget.pod
        $(POD2MAN) --center="GNU Wget" --release="GNU Wget @VERSION@" $? > $@