From owner-cvs-doc@FreeBSD.ORG Wed Sep 12 22:37:17 2007 Return-Path: Delivered-To: cvs-doc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0593416A41A; Wed, 12 Sep 2007 22:37:17 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.freebsd.org (Postfix) with ESMTP id 62C1913C45A; Wed, 12 Sep 2007 22:37:16 +0000 (UTC) (envelope-from keramida@FreeBSD.org) Received: from kobe.laptop (dialup243.ach.sch.gr [81.186.70.243]) (authenticated bits=128) by igloo.linux.gr (8.14.1/8.14.1/Debian-9) with ESMTP id l8CMZ1cg029636 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 13 Sep 2007 01:35:11 +0300 Received: from kobe.laptop (kobe.laptop [127.0.0.1]) by kobe.laptop (8.14.1/8.14.1) with ESMTP id l8CMZ0jU004002; Thu, 13 Sep 2007 01:35:01 +0300 (EEST) (envelope-from keramida@FreeBSD.org) Received: (from keramida@localhost) by kobe.laptop (8.14.1/8.14.1/Submit) id l8CMYxRj003998; Thu, 13 Sep 2007 01:34:59 +0300 (EEST) (envelope-from keramida@FreeBSD.org) Date: Thu, 13 Sep 2007 01:34:58 +0300 From: Giorgos Keramidas To: Remko Lodder Message-ID: <20070912223458.GA2882@kobe.laptop> References: <200709121649.l8CGnb0p051906@repoman.freebsd.org> <59771.195.64.94.120.1189615939.squirrel@galain.elvandar.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <59771.195.64.94.120.1189615939.squirrel@galain.elvandar.org> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-4.097, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 0.30, BAYES_00 -2.60) X-Hellug-MailScanner-From: keramida@freebsd.org X-Spam-Status: No Cc: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: www Makefile X-BeenThere: cvs-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the doc and www trees List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Sep 2007 22:37:17 -0000 On 2007-09-12 18:52, Remko Lodder wrote: > On Wed, September 12, 2007 6:49 pm, Giorgos Keramidas wrote: > > keramida 2007-09-12 16:49:37 UTC > > > > FreeBSD doc repository > > > > Modified files: > > . Makefile > > Log: > > Tiny toplevel www/Makefile nit. > > > > The makefile include already pulls in , > > so including the later again causes spurious warnings about targets > > being redefined, like: > > [snip] > > > Removing the extra include fixes this. > > [snip] > > Thanks Giorgos!! You're welcome. I was kind of scared about making this change, because I was not 100% sure that pulls in in all the possible FreeBSD releases people are using to build www/ snapshots. In particular, I was waiting for a "www build is broken" email from our automated build. Then a quick test by looking at the branches on which does *not* automatically pull too showed that: % kobe:~/ws/bsd/src/share/mk$ cvs -QR up -APCd . && \ % rm -f '.#'* && \ % for bname in \ % $( cvs stat -v bsd.obj.mk | fgrep branch: | \ % awk '{print $1}' ) ; \ % do \ % cvs -QR up -APCd -r "$bname" . && \ % rm -f '.#'* && \ % expand bsd.obj.mk | grep -q 'include[ ]*' ; \ % if [ $? -eq 0 ]; then \ % rc='ok ' ; \ % else \ % rc='err' ; \ % fi ; \ % echo "$rc $bname" ; \ % done % ok RELENG_6_2 % ok RELENG_5_5 % ok RELENG_6_1 % ok RELENG_6_0 % ok RELENG_6 % ok RELENG_5_4 % ok RELENG_4_11 % ok RELENG_5_3 % ok RELENG_5 % ok RELENG_4_10 % ok RELENG_5_2 % ok RELENG_4_9 % ok RELENG_5_1 % ok RELENG_4_8 % ok RELENG_5_0 % ok RELENG_4_7 % err RELENG_4_6 % err RELENG_4_5 % err RELENG_4_4 % err RELENG_4_3 % ok RELENG_4 % err RELENG_3_2_PAO % err RELENG_3 % err RELENG_2_2 % err RELENG_2_1_0 So unless someone tries to build the latest and greatest version of our web site in a system which runs a FreeBSD version older than RELENG_4_6 or RELENG_3, we should be ok :-) - Giorgos