From owner-svn-src-head@FreeBSD.ORG Mon Nov 10 20:15:29 2008 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 175801065693; Mon, 10 Nov 2008 20:15:29 +0000 (UTC) (envelope-from blue@white.lv) Received: from mx2.nttmcl.com (MX2.nttmcl.com [216.69.68.200]) by mx1.freebsd.org (Postfix) with ESMTP id E9EC68FC08; Mon, 10 Nov 2008 20:15:28 +0000 (UTC) (envelope-from blue@white.lv) Received: from localhost (localhost [127.0.0.1]) by mx2.nttmcl.com (Postfix) with ESMTP id 4AE5E4DD4F; Mon, 10 Nov 2008 11:53:17 -0800 (PST) X-Spam-Score: -3.714 X-Spam-Level: X-Spam-Status: No, score=-3.714 tagged_above=-999 required=5 tests=[ALL_TRUSTED=-1.8, AWL=0.684, BAYES_00=-2.599, DNS_FROM_SECURITYSAGE=0.001] Received: from mx2.nttmcl.com ([127.0.0.1]) by localhost (mx2.nttmcl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id WWtvTrCMsvcn; Mon, 10 Nov 2008 11:53:16 -0800 (PST) Received: from [216.69.69.190] (dhcp190.nttmcl.com [216.69.69.190]) by mx2.nttmcl.com (Postfix) with ESMTP id E22C74DD4D; Mon, 10 Nov 2008 11:53:16 -0800 (PST) Message-ID: <4918912D.2040100@white.lv> Date: Mon, 10 Nov 2008 11:53:17 -0800 From: "Eugene M. Kim" User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: =?UTF-8?B?RGFnLUVybGluZyBTbcO4cmdyYXY=?= References: <200811100635.mAA6ZUWV060966@svn.freebsd.org> <86wsfb1jda.fsf@ds4.des.no> In-Reply-To: <86wsfb1jda.fsf@ds4.des.no> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Cc: svn-src-head@freebsd.org, Matteo Riondato , svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r184809 - in head/usr.sbin/cron: cron crontab lib X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Nov 2008 20:15:29 -0000 A (very) minor correction: Command-line variable assignments override even "="-style ones: $ cat Makefile OMG= OH MY GOD .error ${OMG} $ make "/home/ab/Makefile", line 3: OH MY GOD $ make OMG=OMIGOD "/home/ab/Makefile", line 3: OMIGOD But "="-style assignments does nullify overrides stored in src.conf or make.conf, so I believe your overall point is still quite valid. : ) Cheers, Eugene Dag-Erling Smørgrav wrote: > Matteo Riondato writes: > >> +WARNS=3 >> > > SOP is to use ?= instead of = here so you can override it on the command > line. > > DES >