From owner-freebsd-current@FreeBSD.ORG Mon Oct 3 21:41:01 2005 Return-Path: X-Original-To: current@freebsd.org Delivered-To: freebsd-current@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0992616A43E for ; Mon, 3 Oct 2005 21:41:01 +0000 (GMT) (envelope-from danny@ricin.com) Received: from smtpq1.home.nl (smtpq1.home.nl [213.51.128.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A93943D48 for ; Mon, 3 Oct 2005 21:41:00 +0000 (GMT) (envelope-from danny@ricin.com) Received: from [213.51.128.133] (port=57365 helo=smtp2.home.nl) by smtpq1.home.nl with esmtp (Exim 4.30) id 1EMY3P-00073L-Am; Mon, 03 Oct 2005 23:40:59 +0200 Received: from cp464173-a.dbsch1.nb.home.nl ([84.27.215.228]:59487 helo=desktop.homenet) by smtp2.home.nl with esmtp (Exim 4.30) id 1EMY3C-0003He-NP; Mon, 03 Oct 2005 23:40:46 +0200 From: Danny Pansters To: Scot Hetzel Date: Mon, 3 Oct 2005 23:39:53 +0000 User-Agent: KMail/1.8.1 References: <200510032138.46226.danny@ricin.com> <790a9fff0510031347v34c5a48bg3968aadcda03a10b@mail.gmail.com> In-Reply-To: <790a9fff0510031347v34c5a48bg3968aadcda03a10b@mail.gmail.com> X-Face: "0Qv=,p:+]LvuqrtS4U\z3k"qN=.1]@=?utf-8?q?=258=3F=3BPoab=23v=27F=7E=0A=09!Wm=5Fe-=24=7EL=5D=3B?=>[c*L^Qoladj)x@mH}Bqz"vLO?Zdl}[@V@=?utf-8?q?U=3Fx3=23lI=3A=0A=09=24DN=7E!Hr?=@K`-mNv"zXm MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510032339.54030.danny@ricin.com> X-AtHome-MailScanner-Information: Please contact support@home.nl for more information X-AtHome-MailScanner: Found to be clean Cc: current@freebsd.org Subject: Re: 6.0-today kernel build fails over nvidia-driver X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Oct 2005 21:41:01 -0000 On Monday 3 October 2005 20:47, Scot Hetzel wrote: > On 10/3/05, Danny Pansters wrote: > > I was updating from BETA1 and have nvidia enabled in loader.conf. It used > > to be that I had to rebuild from the port after installworld, but now > > apparently the idea is that it gets pulled in during makekernel. I can't > > see where though. The problem seems to be a misquote or a shell-expansion > > thing. > > This is coming from kern.post.mk: > > cd ${PORTSDIR:-/usr/ports}/"nvidia-driver; SYSDIR= > > /usr/obj/usr/src/make.i386/make -B all > > Syntax error: Unterminated quoted string > > *** Error code 2 > > It looks like you have PORTS_MODULES defined in your /etc/make.conf > file. This causes all defined PORTS_MODULES to be updated when the > kernel is built. > > The problem is a missing ending quote and the directory to where the > nvidia-driver is located in the ports tree. > > You'll need to either remove PORTS_MODULES, or fix it to show the > correct location of the nvidia-driver port in /etc/make.conf. > > PORTS_MODULES= x11/nvidia-driver Ah, I see. Thanks. I have this, put in automagically I guess: PORTS_MODULES="nvidia-driver rct" I'll change it, it'll work. Still learning something new every day :) Thanks again, Dan