Return-Path: Delivered-To: apmail-incubator-stdcxx-commits-archive@www.apache.org Received: (qmail 82605 invoked from network); 29 Nov 2007 00:38:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 29 Nov 2007 00:38:07 -0000 Received: (qmail 21587 invoked by uid 500); 29 Nov 2007 00:37:55 -0000 Delivered-To: apmail-incubator-stdcxx-commits-archive@incubator.apache.org Received: (qmail 21578 invoked by uid 500); 29 Nov 2007 00:37:55 -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 21565 invoked by uid 99); 29 Nov 2007 00:37:55 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Nov 2007 16:37:55 -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, 29 Nov 2007 00:37:44 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0E2AD1A983A; Wed, 28 Nov 2007 16:37:47 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r599224 - /incubator/stdcxx/trunk/bin/buildntest Date: Thu, 29 Nov 2007 00:37:46 -0000 To: stdcxx-commits@incubator.apache.org From: ablack@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071129003747.0E2AD1A983A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ablack Date: Wed Nov 28 16:37:45 2007 New Revision: 599224 URL: http://svn.apache.org/viewvc?rev=599224&view=rev Log: 2007-11-28 Andrew Black * bin/buildntest (make_stage): Tee output of make invocation to $log rather than $buildlog. This enables correct processing of runall output. Modified: incubator/stdcxx/trunk/bin/buildntest Modified: incubator/stdcxx/trunk/bin/buildntest URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/bin/buildntest?rev=599224&r1=599223&r2=599224&view=diff ============================================================================== --- incubator/stdcxx/trunk/bin/buildntest (original) +++ incubator/stdcxx/trunk/bin/buildntest Wed Nov 28 16:37:45 2007 @@ -210,14 +210,14 @@ log=$buildlog fi - echo "### $MAKE $keep_going $stagedir $stageargs $MAKEVARS 2>&1 | sed -e \"${TRANS}\" | tee $buildlog:" + echo "### $MAKE $keep_going $stagedir $stageargs $MAKEVARS 2>&1 | sed -e \"${TRANS}\" | tee $log:" ( # start a subshell to measure user and system times # of the subshell commands only export TMPDIR=$tmpdir $MAKE $keep_going $stagedir $stageargs $MAKEVARS 2>&1 \ - | sed -e "${TRANS}" | tee $buildlog + | sed -e "${TRANS}" | tee $log # save the status of the first command in the pipeline # and pass it to the parent shell after writing the real,