You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@apr.apache.org by Joe Orton <jo...@btconnect.com> on 2001/07/03 22:02:49 UTC

[PATCH] fix apr-util/uri

A mini-patch to fix 'make -j2' builds in apr-util since the dependency
of apr_util.lo on uri_delims.h was missing (it only worked because the
targets were ordered correctly):

Index: Makefile.in
===================================================================
RCS file: /home/joe/lib/cvsroot/apr-util/uri/Makefile.in,v
retrieving revision 1.5
diff -u -r1.5 Makefile.in
--- Makefile.in	6 Jun 2001 03:33:46 -0000	1.5
+++ Makefile.in	3 Jul 2001 20:04:31 -0000
@@ -8,5 +8,7 @@
 gen_uri_delims: $(gen_uri_delims_OBJECTS)
 	$(LINK) $(EXTRA_LDFLAGS) $(gen_uri_delims_OBJECTS) $(EXTRA_LIBS)
 
+apr_uri.lo: uri_delims.h
+
 uri_delims.h: gen_uri_delims
 	./gen_uri_delims > uri_delims.h


Re: [PATCH] fix apr-util/uri

Posted by Justin Erenkrantz <je...@ebuilt.com>.
On Tue, Jul 03, 2001 at 09:02:49PM +0100, Joe Orton wrote:
> A mini-patch to fix 'make -j2' builds in apr-util since the dependency
> of apr_util.lo on uri_delims.h was missing (it only worked because the
> targets were ordered correctly):

Committed.  Thanks.  We do need the explicit dependency here.  -- justin