Return-Path: Delivered-To: apmail-incubator-stdcxx-commits-archive@www.apache.org Received: (qmail 338 invoked from network); 12 Sep 2006 16:08:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 12 Sep 2006 16:08:21 -0000 Received: (qmail 93504 invoked by uid 500); 12 Sep 2006 16:08:20 -0000 Delivered-To: apmail-incubator-stdcxx-commits-archive@incubator.apache.org Received: (qmail 93491 invoked by uid 500); 12 Sep 2006 16:08:20 -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 93480 invoked by uid 99); 12 Sep 2006 16:08:20 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Sep 2006 09:08:20 -0700 Authentication-Results: idunn.apache.osuosl.org smtp.mail=sebor@apache.org; spf=permerror X-ASF-Spam-Status: No, hits=-9.8 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received-SPF: error (idunn.apache.osuosl.org: domain apache.org from 140.211.166.113 cause and error) Received: from ([140.211.166.113:54126] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1 r(10620)) with ESMTP id AA/63-02782-18BD6054 for ; Tue, 12 Sep 2006 09:08:33 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 28F981A981D; Tue, 12 Sep 2006 09:08:18 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r442630 - /incubator/stdcxx/trunk/GNUmakefile Date: Tue, 12 Sep 2006 16:08:18 -0000 To: stdcxx-commits@incubator.apache.org From: sebor@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20060912160818.28F981A981D@eris.apache.org> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: sebor Date: Tue Sep 12 09:08:17 2006 New Revision: 442630 URL: http://svn.apache.org/viewvc?view=rev&rev=442630 Log: 2006-09-12 Martin Sebor * GNUmakefile (CXXFLAGS, LDFLAGS, LDSOFLAGS): Corrected a typo when detecting narrow mode. Modified: incubator/stdcxx/trunk/GNUmakefile Modified: incubator/stdcxx/trunk/GNUmakefile URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/GNUmakefile?view=diff&rev=442630&r1=442629&r2=442630 ============================================================================== --- incubator/stdcxx/trunk/GNUmakefile (original) +++ incubator/stdcxx/trunk/GNUmakefile Tue Sep 12 09:08:17 2006 @@ -476,7 +476,7 @@ LDSOFLAGS += $(LDSOFLAGS.wide) ARFLAGS += $(ARFLAGS.wide) endif - ifeq ($(findstring wide,$(BUILDMODE)),narrow) + ifeq ($(findstring narrow,$(BUILDMODE)),narrow) CXXFLAGS += $(CXXFLAGS.narrow) LDFLAGS += $(LDFLAGS.narrow) LDSOFLAGS += $(LDSOFLAGS.narrow)