From owner-cvs-all@FreeBSD.ORG Tue Jun 24 11:40:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 819B737B401; Tue, 24 Jun 2003 11:40:53 -0700 (PDT) Received: from rwcrmhc12.attbi.com (rwcrmhc12.comcast.net [216.148.227.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8C6843F85; Tue, 24 Jun 2003 11:40:52 -0700 (PDT) (envelope-from julian@elischer.org) Received: from interjet.elischer.org ([12.233.125.100]) by attbi.com (rwcrmhc12) with ESMTP id <2003062418405201400sovd6e>; Tue, 24 Jun 2003 18:40:52 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id LAA93632; Tue, 24 Jun 2003 11:40:51 -0700 (PDT) Date: Tue, 24 Jun 2003 11:40:50 -0700 (PDT) From: Julian Elischer To: Andrew Gallatin In-Reply-To: <20030624130610.A94715@grasshopper.cs.duke.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Julian Elischer cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin Makefile src/usr.sbin Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jun 2003 18:40:53 -0000 On Tue, 24 Jun 2003, Andrew Gallatin wrote: > Julian Elischer [julian@FreeBSD.org] wrote: > > julian 2003/06/24 06:25:24 PDT > > > > FreeBSD src repository > > > > Modified files: > > usr.bin Makefile > > usr.sbin Makefile > > Log: > > Connect bluetooth tools for i386 only. > > FWIW, buildworld now dies for me in bluetooth on x86: > > ===> usr.sbin/bluetooth/hcsecd > yacc -d -o parser.c /usr/src/usr.sbin/bluetooth/hcsecd/parser.y > lex -t /usr/src/usr.sbin/bluetooth/hcsecd/lexer.l > lexer.c > rm -f .depend > mkdep -f .depend -a > -I/usr/src/usr.sbin/bluetooth/hcsecd/../../../sys/netgraph/bluetooth/include /usr/src/usr.sbin/bluetooth/hcsecd/hcsecd.c > lexer.c parser.c > /usr/src/usr.sbin/bluetooth/hcsecd/parser.y:41:20: hcsecd.h: No such file or directory > mkdep: compile failed > *** Error code 1 > 1 error > *** Error code 2 > 1 error > *** Error code 2 > 1 error > *** Error code 2 > 1 error > *** Error code 2 > 1 error > *** Error code 2 > 1 error > intersting.. I compiled the whole set several times.. maybe I have an include file somewhere that you don't? lemme look.. ... nope.. It still works "as expected" for me on a new machine.. do you have it fully checked out? ref3# pwd /usr/src/usr.sbin/bluetooth ref3# find `pwd` -name hcsecd.h /usr/src/usr.sbin/bluetooth/hcsecd/hcsecd.h ref3# Hmm Maybe something there stops teh .. AHHHHHH.. It's the damned 'obj' stuff.. to fix: cd /usr/src/usr.sbin/bluetooth/hcsecd add teh following to teh Makefile: CFLAGS+= -g -I${.CURDIR} -I${.CURDIR}/........ ^^^^^^^^^^^ I'll fix it in the tree now. just shows.. building it OUT of "make buildworld" is not enough... pointy hat here please.. > > > Drew >