Return-Path: Delivered-To: apmail-incubator-stdcxx-commits-archive@www.apache.org Received: (qmail 42825 invoked from network); 14 Aug 2007 01:21:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 14 Aug 2007 01:21:20 -0000 Received: (qmail 1817 invoked by uid 500); 14 Aug 2007 01:21:18 -0000 Delivered-To: apmail-incubator-stdcxx-commits-archive@incubator.apache.org Received: (qmail 1805 invoked by uid 500); 14 Aug 2007 01:21:18 -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 1794 invoked by uid 99); 14 Aug 2007 01:21:18 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Aug 2007 18:21:18 -0700 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; Tue, 14 Aug 2007 01:21:19 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C78811A981A; Mon, 13 Aug 2007 18:20:59 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r565597 - /incubator/stdcxx/trunk/etc/config/makefile.rules Date: Tue, 14 Aug 2007 01:20:59 -0000 To: stdcxx-commits@incubator.apache.org From: sebor@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070814012059.C78811A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebor Date: Mon Aug 13 18:20:58 2007 New Revision: 565597 URL: http://svn.apache.org/viewvc?view=rev&rev=565597 Log: 2007-08-14 Martin Sebor STDCXX-521 * makefile.rules (makedep): Set the "local" shell variable depflags to the value of $(DEPENDLFAGS) when the GNU make $(value) function yields the empty string (as a result of GNU make 3.79 bug). Modified: incubator/stdcxx/trunk/etc/config/makefile.rules Modified: incubator/stdcxx/trunk/etc/config/makefile.rules URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/makefile.rules?view=diff&rev=565597&r1=565596&r2=565597 ============================================================================== --- incubator/stdcxx/trunk/etc/config/makefile.rules (original) +++ incubator/stdcxx/trunk/etc/config/makefile.rules Mon Aug 13 18:20:58 2007 @@ -183,6 +183,7 @@ s:$(TOPDIR):$$""(TOPDIR):gp; \ s:$(BUILDDIR):$$""(BUILDDIR):gp" ; \ depflags="$(value DEPENDFLAGS$(depsuffix))"; \ + [ "$$depflags" = "" ] && depflags=$(DEPENDFLAGS); \ echo "$(CXX) $$depflags $(CPPFLAGS) $(CXXFLAGS) $<"; \ $(CXX) $$depflags $(CPPFLAGS) $(CXXFLAGS) $< \ | sed "$$sedexp1" | tr "@" "\n" | sed -n "$$sedexp2" >$@ ; \