From owner-cvs-src@FreeBSD.ORG Sun Sep 7 04:31:18 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 250E416A4BF; Sun, 7 Sep 2003 04:31:18 -0700 (PDT) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81E1243F75; Sun, 7 Sep 2003 04:31:15 -0700 (PDT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9/8.12.3) with ESMTP id h87BVETX090240; Sun, 7 Sep 2003 05:31:14 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Sun, 07 Sep 2003 05:30:10 -0600 (MDT) Message-Id: <20030907.053010.130739333.imp@bsdimp.com> To: ru@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <20030907104614.GC10526@sunbay.com> References: <200309070216.h872GBh2098385@repoman.freebsd.org> <20030907104614.GC10526@sunbay.com> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make cond.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Sep 2003 11:31:18 -0000 In message: <20030907104614.GC10526@sunbay.com> Ruslan Ermilov writes: : On Sat, Sep 06, 2003 at 07:16:10PM -0700, Warner Losh wrote: : > imp 2003/09/06 19:16:10 PDT : > : > FreeBSD src repository : > : > Modified files: : > usr.bin/make cond.c : > Log: : > Keep up with minor changes to NetBSD. Consider a variable empty when : > not define. : > : > Obtained From: NetBSD (rev 1.18; sjg) : > : > Revision Changes Path : > 1.27 +1 -1 src/usr.bin/make/cond.c : > : Does it mean that ``.if empty(FOO)'' will not cause an error : now when FOO is not defined? If so, what is the motivation : for this change? The NetBSD folks needed it for something, I'm not sure what. Since it was easy, didn't brea anything and cross BSD make divergence has been a problem in the past, I went ahead and added it. Warner