From owner-freebsd-questions@FreeBSD.ORG Fri Feb 15 10:39:10 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E14A316A474 for ; Fri, 15 Feb 2008 10:39:10 +0000 (UTC) (envelope-from norgaard@locolomo.org) Received: from bifrost.locolomo.org (97.pool85-48-194.static.orange.es [85.48.194.97]) by mx1.freebsd.org (Postfix) with ESMTP id 81C0813C4F4 for ; Fri, 15 Feb 2008 10:39:10 +0000 (UTC) (envelope-from norgaard@locolomo.org) Received: from Home.local (32.Red-80-37-158.staticIP.rima-tde.net [80.37.158.32]) by bifrost.locolomo.org (Postfix) with ESMTP id 5D9C139824; Fri, 15 Feb 2008 11:39:09 +0100 (CET) Message-ID: <47B56BCC.6010508@locolomo.org> Date: Fri, 15 Feb 2008 11:39:08 +0100 From: Erik Norgaard User-Agent: Thunderbird 2.0.0.9 (Macintosh/20071031) MIME-Version: 1.0 To: Christer Solskogen References: <47B56358.7040402@carebears.mine.nu> In-Reply-To: <47B56358.7040402@carebears.mine.nu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Error in src.conf(5)? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Feb 2008 10:39:11 -0000 Christer Solskogen wrote: > src.conf(5) says: > "The values of variables are ignored regardless of their setting; even > if they would be set to ``FALSE'' or ``NO''. Just the existence of an > option will cause it to be honoured by make(1)." > > So in my /etc/jail-src.conf I have a couple of options like this: > > WITHOUT_ACPI > WITHOUT_ASSERT_DEBUG > WITHOUT_ATM > WITHOUT_AUDIT > WITHOUT_AUTHPF > WITHOUT_BLUETOOTH > > Running "make installworld SRCCONF=/etc/jail-src.conf" gives me the > following errors: > > "/etc/jail-src.conf", line 1: Need an operator > "/etc/jail-src.conf", line 2: Need an operator > "/etc/jail-src.conf", line 3: Need an operator > "/etc/jail-src.conf", line 4: Need an operator > "/etc/jail-src.conf", line 5: Need an operator > "/etc/jail-src.conf", line 6: Need an operator > > Do I really need something like "WITHOUT_ACPI=TRUE" ? The variables may be "declared" but are not set. You should set them to "YES". Cheers, Erik