From owner-freebsd-stable Wed Sep 2 17:11:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA04081 for freebsd-stable-outgoing; Wed, 2 Sep 1998 17:11:07 -0700 (PDT) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from fandago.read.tasc.com (fandago.read.tasc.com [147.81.240.29]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA04075 for ; Wed, 2 Sep 1998 17:11:05 -0700 (PDT) (envelope-from icooper@protopong.read.tasc.com) Received: from protopong.read.tasc.com (protopong.read.tasc.com [147.81.246.230]) by fandago.read.tasc.com (8.9.1a/8.9.1) with SMTP id UAA27558 for ; Wed, 2 Sep 1998 20:09:59 -0400 (EDT) Received: by protopong.read.tasc.com (SMI-8.6/SMI-SVR4) id UAA10636; Wed, 2 Sep 1998 20:09:58 -0400 Date: Wed, 2 Sep 1998 20:09:58 -0400 Message-Id: <199809030009.UAA10636@protopong.read.tasc.com> From: Ira Cooper To: freebsd-stable@FreeBSD.ORG Subject: Patch to 2.2.7-STABLE Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG to the makefile in src/usr.bin/compile_et apply: --- cut here --- --- Makefile.orig Wed Sep 2 19:57:40 1998 +++ Makefile Wed Sep 2 19:57:52 1998 @@ -2,7 +2,7 @@ PROG= compile_et SRCS= compile_et.c error_table.y -CFLAGS+= -I. -I${.CURDIR}/../../lib/libcom_err +CFLAGS+= -I${.CURDIR}/../../lib/libcom_err -I. CLEANFILES+= et_lex.lex.c y.tab.h DPADD+= ${LIBL} LDADD+= -ll --- cut here --- I don't know if this will allow the whole system to build because my machine takes, 4hr. to build world... I'll finish it overnight. If it suffers another break of the same type... a similar fix might get it. Problem: error_table.h needed to be pulled from ${.CURDIR}/../../lib/libcom_err and yacc via the current build process was generating it, and the build using it, thus things broke. BTW: This break was documented as a POSSIBLITY in the commit logs for bsd.dep.mk/bsd.prog.mk. :( (The case of a shadowed include file.) -Ira To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message