What platform are you trying to build on? And what is the problem you're seeing?
All of my testing was on Linux, and it worked like a charm (before/after the change below). So... I'm wondering what part isn't working for you? Cheers, -g On Sat, Dec 02, 2000 at 05:42:39PM -0000, [EMAIL PROTECTED] wrote: > rbb 00/12/02 09:42:39 > > Modified: build rules.mk.in > Log: > Get the build to at least start. The build still doesn't work, but now > its not a build error. > > Revision Changes Path > 1.2 +1 -1 apr-util/build/rules.mk.in > > Index: rules.mk.in > =================================================================== > RCS file: /home/cvs/apr-util/build/rules.mk.in,v > retrieving revision 1.1 > retrieving revision 1.2 > diff -u -r1.1 -r1.2 > --- rules.mk.in 2000/12/02 16:13:47 1.1 > +++ rules.mk.in 2000/12/02 17:42:38 1.2 > @@ -101,7 +101,7 @@ > all-recursive depend-recursive clean-recursive distclean-recursive \ > extraclean-recursive: > @otarget=`echo $@|sed s/-recursive//`; \ > - for i in $(SUBDIRS); do \ > + list='$(SUBDIRS)'; for i in $$list; do \ > target="$$otarget"; \ > echo "Making $$target in $$i"; \ > if test "$$i" = "."; then \ > > > -- Greg Stein, http://www.lyra.org/