From owner-freebsd-current@FreeBSD.ORG Sun Feb 19 03:18:34 2006 Return-Path: X-Original-To: freebsd-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 12D7F16A420 for ; Sun, 19 Feb 2006 03:18:34 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 495BF43D45 for ; Sun, 19 Feb 2006 03:18:32 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from flame.pc (dialup158.ach.sch.gr [81.186.70.158]) (authenticated bits=128) by igloo.linux.gr (8.13.5/8.13.5/Debian-3) with ESMTP id k1J3IDXa022153 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Sun, 19 Feb 2006 05:18:17 +0200 Received: from flame.pc (flame [127.0.0.1]) by flame.pc (8.13.4/8.13.4) with ESMTP id k1J3I24i020386 for ; Sun, 19 Feb 2006 05:18:02 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by flame.pc (8.13.4/8.13.4/Submit) id k1J3I0we020385 for freebsd-current@freebsd.org; Sun, 19 Feb 2006 05:18:00 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Date: Sun, 19 Feb 2006 05:18:00 +0200 From: Giorgos Keramidas To: freebsd-current@freebsd.org Message-ID: <20060219031800.GA19663@flame.pc> References: <20060219010958.GA22357@flame.pc> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060219010958.GA22357@flame.pc> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (score=-3.386, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 0.81, BAYES_00 -2.60, DNS_FROM_RFC_ABUSE 0.20) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr Subject: Re: Is HEAD broken for anybody else? 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: Sun, 19 Feb 2006 03:18:34 -0000 On 2006-02-19 03:09, Giorgos Keramidas wrote: > I get the following build error when I try to build HEAD on a snapshot > of 20-Jan-2006. > > 2006-02-19 00:56:33.078914 - ===> sbin/atm/atmconfig (depend) > 2006-02-19 00:56:33.180210 - cat /home/build/src/sbin/atm/atmconfig/../../../contrib/ngatm/snmp_atm/atm_tree.def /home/build/src/sbin/atm/atmconfig/../../../usr.sbin/bsnmpd/modules/snmp_atm/atm_freebsd.def | gensnmptree -e `tail -n +2 /home/build/src/sbin/atm/atmconfig/atm_oid.list` > /home/build/obj/home/build/src/sbin/atm/atmconfig/oid.h > 2006-02-19 00:56:33.218435 - gensnmptree: not found > 2006-02-19 00:56:33.219570 - *** Error code 127 > 2006-02-19 00:56:33.219705 - > 2006-02-19 00:56:33.219826 - Stop in /home/build/src/sbin/atm/atmconfig. > 2006-02-19 00:56:33.220762 - *** Error code 1 > 2006-02-19 00:56:33.220883 - > 2006-02-19 00:56:33.221004 - Stop in /home/build/src/sbin/atm. > 2006-02-19 00:56:33.222062 - *** Error code 1 > 2006-02-19 00:56:33.222194 - > 2006-02-19 00:56:33.222315 - Stop in /home/build/src/sbin. > 2006-02-19 00:56:33.223236 - *** Error code 1 > 2006-02-19 00:56:33.223419 - > 2006-02-19 00:56:33.223547 - Stop in /home/build/src. > 2006-02-19 00:56:33.224515 - *** Error code 1 > 2006-02-19 00:56:33.225785 - > 2006-02-19 00:56:33.225923 - Stop in /home/build/src. > 2006-02-19 00:56:33.226006 - *** Error code 1 > 2006-02-19 00:56:33.226112 - > 2006-02-19 00:56:33.226187 - Stop in /home/build/src. > > Is this something that anyone else has bumped to, or have I managed to > mess my CURRENT installation? There seem to be some changes in sbin/atm/ that depend on gensnmptree being available at "make depend" time. The following fixes the "make depend" run here, but I'm not sure if this is the right way to do it. %%% Index: atmconfig/Makefile =================================================================== --- atmconfig/Makefile (revision 16) +++ atmconfig/Makefile (working copy) @@ -6,27 +6,12 @@ # $FreeBSD: src/sbin/atm/atmconfig/Makefile,v 1.8 2005/03/15 07:38:15 harti Exp $ PROG= atmconfig -.ifndef RESCUE -SRCS= ${.OBJDIR}/oid.h -.endif -SRCS+= main.c diag.c natm.c -.ifndef RESCUE -SRCS+= atmconfig_device.c -.endif +SRCS= main.c diag.c natm.c MAN= atmconfig.8 # CFLAGS+= -DPATH_HELP='".:/usr/share/doc/atm:/usr/local/share/doc/atm"' CFLAGS+= -I${.OBJDIR} -.ifndef RESCUE -DPADD= ${LIBBSNMP} -LDADD= -lbsnmp -.endif - -.ifndef RESCUE -CLEANFILES+= oid.h -.endif - .if ${MACHINE_ARCH} == "arm" WARNS?= 3 .else %%%