Return-Path: Delivered-To: apmail-httpd-test-dev-archive@www.apache.org Received: (qmail 83505 invoked from network); 12 Sep 2003 16:41:26 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 12 Sep 2003 16:41:26 -0000 Received: (qmail 64395 invoked by uid 500); 12 Sep 2003 16:41:18 -0000 Delivered-To: apmail-httpd-test-dev-archive@httpd.apache.org Received: (qmail 64360 invoked by uid 500); 12 Sep 2003 16:41:18 -0000 Mailing-List: contact test-dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: test-dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list test-dev@httpd.apache.org Received: (qmail 64347 invoked from network); 12 Sep 2003 16:41:18 -0000 Received: from unknown (HELO cancer.clove.org) (128.195.23.11) by daedalus.apache.org with SMTP; 12 Sep 2003 16:41:18 -0000 Received: from clove.org (dsl017-044-108.sfo4.dsl.speakeasy.net [69.17.44.108]) (authenticated) by cancer.clove.org (8.11.6/8.11.6) with ESMTP id h8CGfLd03570 for ; Fri, 12 Sep 2003 09:41:21 -0700 Date: Fri, 12 Sep 2003 09:41:25 -0700 Subject: Re: cvs commit: httpd-test/flood/build rules.mk.in Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v552) From: Aaron Bannert To: test-dev@httpd.apache.org Content-Transfer-Encoding: 7bit In-Reply-To: <20030912065730.54689.qmail@minotaur.apache.org> Message-Id: X-Mailer: Apple Mail (2.552) X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I think I wrote that stuff, and the first time you run make it will complain about a missing .deps file, but once that file is built you won't get the complaints any longer. I just didn't take the time to figure out how to do it in a way that didn't complain about the missing file. -aaron On Thursday, September 11, 2003, at 11:57 PM, jerenkrantz@apache.org wrote: > jerenkrantz 2003/09/11 23:57:29 > > Modified: flood CHANGES > flood/build rules.mk.in > Log: > Axe the .deps stuff for now. I can't figure out how I intended this > to > work. > > Revision Changes Path > 1.51 +2 -0 httpd-test/flood/CHANGES > > Index: CHANGES > =================================================================== > RCS file: /home/cvs/httpd-test/flood/CHANGES,v > retrieving revision 1.50 > retrieving revision 1.51 > diff -u -u -r1.50 -r1.51 > --- CHANGES 8 Sep 2003 00:04:49 -0000 1.50 > +++ CHANGES 12 Sep 2003 06:57:29 -0000 1.51 > @@ -1,5 +1,7 @@ > Changes since 1.0: > > +* Remove .deps code that is just broken for now. [Justin > Erenkrantz] > + > * Added configversion attribute (root element ) which ties > config > file structure with certain flood version and warns user if there > is a > conflict. [Jacek Prucia] > > > > 1.4 +2 -2 httpd-test/flood/build/rules.mk.in > > Index: rules.mk.in > =================================================================== > RCS file: /home/cvs/httpd-test/flood/build/rules.mk.in,v > retrieving revision 1.3 > retrieving revision 1.4 > diff -u -u -r1.3 -r1.4 > --- rules.mk.in 3 Feb 2003 17:11:00 -0000 1.3 > +++ rules.mk.in 12 Sep 2003 06:57:29 -0000 1.4 > @@ -179,7 +179,7 @@ > > local-depend: x-local-depend > if test "`echo $(srcdir)/*.c`" != "$(srcdir)'/*.c'"; then \ > - $(CC) -MM $(ALL_CPPFLAGS) $(ALL_INCLUDES) $(srcdir)/*.c | sed > 's/\.o:/.lo:/' > $(builddir)/.deps || true; \ > + $(CC) -MM $(ALL_CPPFLAGS) $(ALL_INCLUDES) $(srcdir)/*.c | sed > 's/\.o:/.lo:/' > $(top_builddir)/.deps || true; \ > fi > > local-clean: x-local-clean > @@ -252,7 +252,7 @@ > # > # Dependencies > # > -include $(builddir)/.deps > +#include $(top_builddir)/.deps > > .PHONY: all all-recursive install-recursive local-all > $(PHONY_TARGETS) \ > shared-build shared-build-recursive local-shared-build \ > > >