From owner-freebsd-security@FreeBSD.ORG Thu Jan 7 19:42:39 2010 Return-Path: Delivered-To: freebsd-security@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18A141065670 for ; Thu, 7 Jan 2010 19:42:39 +0000 (UTC) (envelope-from roberto.nunnari@supsi.ch) Received: from ti-edu.ch (posta.ti-edu.ch [195.176.176.171]) by mx1.freebsd.org (Postfix) with ESMTP id A41E48FC0A for ; Thu, 7 Jan 2010 19:42:37 +0000 (UTC) X-Virus-Scanned: by cgpav Received: from [84.55.231.3] (account roberto.nunnari@supsi.ch HELO [192.168.1.6]) by ti-edu.ch (CommuniGate Pro SMTP 5.2.15) with ESMTPSA id 37871471; Thu, 07 Jan 2010 20:42:35 +0100 Message-ID: <4B463930.5070008@supsi.ch> Date: Thu, 07 Jan 2010 20:42:40 +0100 From: Roberto Nunnari User-Agent: Thunderbird 2.0.0.23 (Windows/20090812) MIME-Version: 1.0 To: Roland Smith References: <201001062255.o06MtanW089116@freefall.freebsd.org> <20100107185306.GA2742@slackbox.xs4all.nl> In-Reply-To: <20100107185306.GA2742@slackbox.xs4all.nl> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-security@freebsd.org Subject: Re: [FreeBSD-Announce] FreeBSD Security Advisory FreeBSD-SA-10:02.ntpd X-BeenThere: freebsd-security@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Security issues \[members-only posting\]" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2010 19:42:39 -0000 Roland Smith wrote: > After updating the source to 8.0-RELEASE-p2 (according to /usr/src/UPDATING), > the build procedure for ntpd failed; > > # cd /usr/src/usr.sbin/ntp/ntpd > # make obj && make depend && make && make install > don't know how to make /usr/obj/usr/src/usr.sbin/ntp/ntpd/../libparse/libparse.a. Stop > > So I changed the procedure as follows, to make it work; > > # cd /usr/src/usr.sbin/ntp/ntpd > # make obj && make depend > # cd ../libparse/ > # make obj && make depend && make > # cd ../libopts/ > # make obj && make depend && make > # cd ../libntp/ > # make obj && make depend && make > # cd ../ntpd > # make && make install > # /etc/rc.d/ntpd restart > > I do not know what the cause of this problem is, but I suspect a Makefile > somewhere. If more people report this, maybe an errata notice should be > posted? > > Hope this helps. > > Roland I may be wrong (please correct me if I'm wrong), but I believe the problem comes from wheater you have previously 'make buildworld' and deleted (or not) /usr/obj/* If you have the results of a previous 'make buildworld' under /usr/obj/ then the original post procedure works fine, while if you don't it will fail. In that case, just cd .. and repeat the above steps.