Return-Path: Delivered-To: apmail-incubator-stdcxx-commits-archive@www.apache.org Received: (qmail 80159 invoked from network); 12 Jun 2007 01:01:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 12 Jun 2007 01:01:18 -0000 Received: (qmail 87267 invoked by uid 500); 12 Jun 2007 01:01:21 -0000 Delivered-To: apmail-incubator-stdcxx-commits-archive@incubator.apache.org Received: (qmail 87246 invoked by uid 500); 12 Jun 2007 01:01:21 -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 87229 invoked by uid 99); 12 Jun 2007 01:01:21 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Jun 2007 18:01:21 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME 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; Mon, 11 Jun 2007 18:01:17 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id E67681A981A; Mon, 11 Jun 2007 18:00:56 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r546342 - /incubator/stdcxx/trunk/etc/config/GNUmakefile.cfg Date: Tue, 12 Jun 2007 01:00:56 -0000 To: stdcxx-commits@incubator.apache.org From: sebor@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070612010056.E67681A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebor Date: Mon Jun 11 18:00:56 2007 New Revision: 546342 URL: http://svn.apache.org/viewvc?view=rev&rev=546342 Log: 2007-06-11 Martin Sebor * GNUmakefile.cfg (sane): Printed out the library version for which the config header is being generated. clean): Removed $(LOGFILE) from the list of files to remove by the target. Modified: incubator/stdcxx/trunk/etc/config/GNUmakefile.cfg Modified: incubator/stdcxx/trunk/etc/config/GNUmakefile.cfg URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/GNUmakefile.cfg?view=diff&rev=546342&r1=546341&r2=546342 ============================================================================== --- incubator/stdcxx/trunk/etc/config/GNUmakefile.cfg (original) +++ incubator/stdcxx/trunk/etc/config/GNUmakefile.cfg Mon Jun 11 18:00:56 2007 @@ -278,7 +278,9 @@ # check compiler, linker, and run environment's sanity, determine # system (or compiler) architecture (word size, address size, etc.) sane: - @(echo; echo "configuring for $(CCNAME) on $(PLATFORM)"; echo; \ + @(echo; \ + echo "configuring stdcxx $(LIBVER) for $(CCNAME) on $(PLATFORM)"; \ + echo; \ rm -f a.out ; \ echo "int main () { return 0; }" | tee a.cpp >>$(LOGFILE) ; \ printf "%-50.50s " "checking if the compiler is sane"; \ @@ -306,7 +308,7 @@ clean: @rm -f a.out core *.o *.i *.ii *.ti vars.sh \ - *$(LIBSUFFIX) $(LOGFILE) $(TARGET) + *$(LIBSUFFIX) $(TARGET) realclean: clean rm -f *.d *.o *.a *.so a.cpp