Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 2264 invoked from network); 5 Dec 2008 05:29:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Dec 2008 05:29:28 -0000 Received: (qmail 19712 invoked by uid 500); 5 Dec 2008 05:29:40 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 19531 invoked by uid 500); 5 Dec 2008 05:29:40 -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 19514 invoked by uid 99); 5 Dec 2008 05:29:40 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Dec 2008 21:29:40 -0800 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; Fri, 05 Dec 2008 05:28:19 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 640A52388886; Thu, 4 Dec 2008 21:29:07 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r723590 - /apr/apr/trunk/build/jlibtool.c Date: Fri, 05 Dec 2008 05:29:06 -0000 To: commits@apr.apache.org From: pquerna@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081205052907.640A52388886@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: pquerna Date: Thu Dec 4 21:29:05 2008 New Revision: 723590 URL: http://svn.apache.org/viewvc?rev=723590&view=rev Log: jlibtool: Eat the '-release $someNumber' params that libtool 'supports' and we use in apr-util (why?) Modified: apr/apr/trunk/build/jlibtool.c Modified: apr/apr/trunk/build/jlibtool.c URL: http://svn.apache.org/viewvc/apr/apr/trunk/build/jlibtool.c?rev=723590&r1=723589&r2=723590&view=diff ============================================================================== --- apr/apr/trunk/build/jlibtool.c (original) +++ apr/apr/trunk/build/jlibtool.c Thu Dec 4 21:29:05 2008 @@ -1536,6 +1536,10 @@ /* Skip the argument. */ ++a; argused = 1; + } else if (strcmp(arg+1, "release") == 0) { + /* Skip the argument. */ + ++a; + argused = 1; } else if (strcmp(arg+1, "undefined") == 0) { cmd_data->undefined_flag = argv[++a]; argused = 1;