Return-Path: Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 92617 invoked by uid 500); 12 Feb 2001 21:56:53 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 92601 invoked from network); 12 Feb 2001 21:56:51 -0000 X-Authentication-Warning: kurgan.lyra.org: gstein set sender to gstein@lyra.org using -f Date: Mon, 12 Feb 2001 13:59:03 -0800 From: Greg Stein To: dev@apr.apache.org Subject: Re: cvs commit: apr/dso/os390 Makefile.in dso.c Message-ID: <20010212135903.E8123@lyra.org> Mail-Followup-To: dev@apr.apache.org References: <20010212204601.69009.qmail@apache.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20010212204601.69009.qmail@apache.org>; from trawick@apache.org on Mon, Feb 12, 2001 at 08:46:01PM -0000 X-URL: http://www.lyra.org/greg/ X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N Actually, the correct solution is for somebody to hit up every one of those Makefile.in and remove the INCLUDES line. That stuff can all go into rules.mk.in. Cheers, -g On Mon, Feb 12, 2001 at 08:46:01PM -0000, trawick@apache.org wrote: > trawick 01/02/12 12:46:00 > > Modified: dso/os390 Makefile.in dso.c > Log: > standardize the include path in the OS/390 dso directory to get rid of an > annoying warning message > > Revision Changes Path > 1.5 +3 -1 apr/dso/os390/Makefile.in > > Index: Makefile.in > =================================================================== > RCS file: /home/cvs/apr/dso/os390/Makefile.in,v > retrieving revision 1.4 > retrieving revision 1.5 > diff -u -r1.4 -r1.5 > --- Makefile.in 2001/01/09 11:05:42 1.4 > +++ Makefile.in 2001/02/12 20:45:58 1.5 > @@ -5,6 +5,8 @@ > @INCLUDE_RULES@ > > INCDIR=../../include > -INCLUDES=-I$(INCDIR) -I$(INCDIR)/arch > +OSDIR=$(INCDIR)/arch/@OSDIR@ > +DEFOSDIR=$(INCDIR)/arch/@DEFAULT_OSDIR@ > +INCLUDES=-I$(INCDIR) -I$(OSDIR) -I$(DEFOSDIR) > > # DO NOT REMOVE > > > > 1.7 +1 -1 apr/dso/os390/dso.c > > Index: dso.c > =================================================================== > RCS file: /home/cvs/apr/dso/os390/dso.c,v > retrieving revision 1.6 > retrieving revision 1.7 > diff -u -r1.6 -r1.7 > --- dso.c 2001/02/08 07:44:33 1.6 > +++ dso.c 2001/02/12 20:45:59 1.7 > @@ -53,7 +53,7 @@ > */ > > #include "apr_strings.h" > -#include "os390/dso.h" > +#include "dso.h" > #include > #include > > > > -- Greg Stein, http://www.lyra.org/