Return-Path: Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 98164 invoked by uid 500); 4 Apr 2001 04:14:14 -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 98141 invoked from network); 4 Apr 2001 04:14:13 -0000 Date: Tue, 3 Apr 2001 21:13:49 -0700 From: Justin Erenkrantz To: new-httpd@apache.org Cc: dev@apr.apache.org Subject: Re: 2.0.17 Message-ID: <20010403211349.A10042@ebuilt.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from rbb@covalent.net on Tue, Apr 03, 2001 at 08:42:49PM -0700 X-AntiVirus: scanned for viruses by AMaViS 0.2.1-pre3 (http://amavis.org/) X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N > I want more for this release. Come on guys, I know you're out there. FWIW, looks like "make install" needs some more tweaks. Libtool isn't necessarily in the path, but it should be in the current working dir (srclib/apr). Patch included. (Unless I am missing something here...) -- justin Index: Makefile.in =================================================================== RCS file: /home/cvspublic/apr/Makefile.in,v retrieving revision 1.44 diff -u -r1.44 Makefile.in --- Makefile.in 2001/04/03 20:32:06 1.44 +++ Makefile.in 2001/04/04 04:11:35 @@ -58,7 +58,7 @@ if [ ! -d $(libdir) ]; then \ ./build/mkdir.sh $(libdir); \ fi; \ - libtool --mode=install cp $(TARGET_LIB) $(libdir) + ./libtool --mode=install cp $(TARGET_LIB) $(libdir) $(TARGET_LIB): @for i in $(SUBDIRS); do objects="$$objects $$i/*.lo"; done ; \