Return-Path: Delivered-To: apmail-incubator-stdcxx-commits-archive@www.apache.org Received: (qmail 37357 invoked from network); 8 Nov 2007 22:17:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 8 Nov 2007 22:17:11 -0000 Received: (qmail 597 invoked by uid 500); 8 Nov 2007 22:16:59 -0000 Delivered-To: apmail-incubator-stdcxx-commits-archive@incubator.apache.org Received: (qmail 580 invoked by uid 500); 8 Nov 2007 22:16:59 -0000 Mailing-List: contact stdcxx-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-commits@incubator.apache.org Received: (qmail 568 invoked by uid 99); 8 Nov 2007 22:16:58 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Nov 2007 14:16:58 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Nov 2007 22:17:10 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 906E91A9832; Thu, 8 Nov 2007 14:16:49 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r593338 - /incubator/stdcxx/trunk/bin/xbuildgen Date: Thu, 08 Nov 2007 22:16:49 -0000 To: stdcxx-commits@incubator.apache.org From: sebor@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071108221649.906E91A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebor Date: Thu Nov 8 14:16:48 2007 New Revision: 593338 URL: http://svn.apache.org/viewvc?rev=593338&view=rev Log: 2007-11-08 Martin Sebor * xbuildgen: Removed the name of the thread library from the name of the build log before extracting the build type from it. Modified: incubator/stdcxx/trunk/bin/xbuildgen Modified: incubator/stdcxx/trunk/bin/xbuildgen URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/bin/xbuildgen?rev=593338&r1=593337&r2=593338&view=diff ============================================================================== --- incubator/stdcxx/trunk/bin/xbuildgen (original) +++ incubator/stdcxx/trunk/bin/xbuildgen Thu Nov 8 14:16:48 2007 @@ -483,8 +483,12 @@ revno="(unknown)" fi - # extract the build type from the name of the log + # extract the build type from the name of the log, removing + # the name of thread library buildtype=` echo $l \ + | sed "s/\(.*-[18][125]*[aAdDsS]\)-dce-\(.*\)/\1-\2/" \ + | sed "s/\(.*-[18][125]*[aAdDsS]\)-solaris-\(.*\)/\1-\2/" \ + | sed "s/\(.*-[18][125]*[aAdDsS]\)-win32-\(.*\)/\1-\2/" \ | sed "s/.*-\([18][125]*[aAdDsS]\)-[1-9][0-9]*-log.*/\1/"` if [ $? -ne 0 ]; then echo "$myname: warning: unable to extract build type from $l" >&2