From stdcxx-dev-return-2080-apmail-incubator-stdcxx-dev-archive=incubator.apache.org@incubator.apache.org Wed Sep 06 16:37:39 2006 Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 93198 invoked from network); 6 Sep 2006 16:37:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 6 Sep 2006 16:37:39 -0000 Received: (qmail 8279 invoked by uid 500); 6 Sep 2006 16:37:39 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 8266 invoked by uid 500); 6 Sep 2006 16:37:38 -0000 Mailing-List: contact stdcxx-dev-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-dev@incubator.apache.org Received: (qmail 8255 invoked by uid 99); 6 Sep 2006 16:37:38 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Sep 2006 09:37:38 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [208.30.140.160] (HELO moroha.quovadx.com) (208.30.140.160) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Sep 2006 09:37:38 -0700 Received: from [10.70.3.48] ([10.70.3.48]) by moroha.quovadx.com (8.13.6/8.13.4) with ESMTP id k86GbE3c018992 for ; Wed, 6 Sep 2006 16:37:15 GMT Message-ID: <44FEF93C.3060004@roguewave.com> Date: Wed, 06 Sep 2006 10:37:16 -0600 From: Andrew Black User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.6) Gecko/20060730 SeaMonkey/1.0.4 MIME-Version: 1.0 To: stdcxx-dev@incubator.apache.org Subject: [PATCH] Initialize makefile DEPS variable Content-Type: multipart/mixed; boundary="------------070700040703050204030405" X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --------------070700040703050204030405 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Greetings all Attached is a short (2 line) patch to makefile.common that initializes the DEPS variable, with the change log below. This is needed to prevent messages similar to gmake[1]: Entering directory `/build2/batman/5.0.0/builds/33066275/source-buildspace/build' gmake[2]: Entering directory `/build2/batman/5.0.0/builds/33066275/source-buildspace/build/lib' ../makefile.rules:145: *** Recursive variable `DEPS' references itself (eventually). Stop. when running the toplevel makefile on a recursive target (such as runall). This was introduced in svn log 440420. --Andrew Black Log: * makefile.common (DEPS): initialize variable (used in makefile.rules) --------------070700040703050204030405 Content-Type: text/x-patch; name="depsfix.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="depsfix.diff" Index: etc/config/makefile.common =================================================================== --- etc/config/makefile.common (revision 440724) +++ etc/config/makefile.common (working copy) @@ -115,6 +115,8 @@ OBJS += $(patsubst %$(AS_EXT),%.o,$(filter %$(AS_EXT),$(SRCS))) OBJS := $(sort $(OBJS)) +DEPS := + # message files - text files used to generate a catalog - see gencat(1) MSGFILES = $(filter %.msg,$(ALL_FILES)) --------------070700040703050204030405--