Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 90104 invoked from network); 23 Mar 2009 09:40:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 23 Mar 2009 09:40:35 -0000 Received: (qmail 39121 invoked by uid 500); 23 Mar 2009 09:40:35 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 39017 invoked by uid 500); 23 Mar 2009 09:40:35 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 39008 invoked by uid 99); 23 Mar 2009 09:40:35 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Mar 2009 09:40:35 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Mar 2009 09:40:33 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 52C1323888E7; Mon, 23 Mar 2009 09:40:12 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r757363 - /apr/apr/trunk/buildconf Date: Mon, 23 Mar 2009 09:40:12 -0000 To: commits@apr.apache.org From: jerenkrantz@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090323094012.52C1323888E7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jerenkrantz Date: Mon Mar 23 09:40:11 2009 New Revision: 757363 URL: http://svn.apache.org/viewvc?rev=757363&view=rev Log: * buildconf: Do the sed magic for libtool 2.x as well. Poked by: Joe Modified: apr/apr/trunk/buildconf Modified: apr/apr/trunk/buildconf URL: http://svn.apache.org/viewvc/apr/apr/trunk/buildconf?rev=757363&r1=757362&r2=757363&view=diff ============================================================================== --- apr/apr/trunk/buildconf (original) +++ apr/apr/trunk/buildconf Mon Mar 23 09:40:11 2009 @@ -68,6 +68,10 @@ fi if test "$1" = "2"; then $libtoolize --copy + # Wouldn't it just be better to define top_builddir?? + mv build/libtool.m4 build/libtool.m4.$$ + cat build/libtool.m4.$$ | sed -e 's/LIBTOOL=\(.*\)top_build/LIBTOOL=\1apr_build/' > build/libtool.m4 + rm build/libtool.m4.$$ fi # Clean up any leftovers