From owner-freebsd-current Wed Sep 16 11:06:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA29508 for freebsd-current-outgoing; Wed, 16 Sep 1998 11:06:40 -0700 (PDT) (envelope-from owner-freebsd-current@FreeBSD.ORG) Received: from opus.cts.cwu.edu (opus.cts.cwu.edu [198.104.92.71]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA29242 for ; Wed, 16 Sep 1998 11:05:39 -0700 (PDT) (envelope-from skynyrd@opus.cts.cwu.edu) Received: from localhost (skynyrd@localhost) by opus.cts.cwu.edu (8.9.1/8.9.1) with SMTP id LAA26870 for ; Wed, 16 Sep 1998 11:05:10 -0700 (PDT) Date: Wed, 16 Sep 1998 11:05:09 -0700 (PDT) From: Chris Timmons To: freebsd-current@FreeBSD.ORG Subject: atm breakage in aout-to-elf Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I don't know if it came into play that I was building the aout-to-elf target, but I had a problem with the atm code during make depend. It wasn't a missing space after the -I, rather a missing search path. Suggested apparant fix and problem text to follow. I was building a completely virgin /usr/src checked out at 1700 UTC on Sep 16. -Chris foobar:/usr/src/sbin/atm/atm#> cvs -q diff -u Makefile Index: Makefile =================================================================== RCS file: /home/ncvs/src/sbin/atm/atm/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 1998/09/15 19:16:25 1.2 +++ Makefile 1998/09/16 17:59:05 @@ -32,7 +32,7 @@ atm_set.c atm_show.c atm_subr.c MAN8= atm.8 -CFLAGS+= -I${.CURDIR}/../../../sys +CFLAGS+= -I${.CURDIR}/../../../sys -I${.CURDIR}/../../../lib/libatm LDADD+= -latm .include ===> sbin/atm/atm rm -f .depend mkdep -f .depend -a -I/usr/src/sbin/atm/atm/../../../sys -I/usr/obj/aout/usr/src/tmp/usr/include /usr/src/sbin/atm/atm/atm.c /us r/src/sbin/atm/atm/atm_fore200.c /usr/src/sbin/atm/atm/atm_eni.c /usr/src/sbin/atm/atm/atm_inet.c /usr/src/sbin/atm/atm/atm_print.c /usr/src/sbin/atm/atm/atm_set.c /usr/src/sbin/atm/atm/atm_show.c /usr/src/sbin/atm/atm/atm_subr.c /usr/src/sbin/atm/atm/atm.c:62: libatm.h: No such file or directory /usr/src/sbin/atm/atm/atm_fore200.c:59: libatm.h: No such file or directory /usr/src/sbin/atm/atm/atm_eni.c:59: libatm.h: No such file or directory /usr/src/sbin/atm/atm/atm_inet.c:59: libatm.h: No such file or directory /usr/src/sbin/atm/atm/atm_print.c:60: libatm.h: No such file or directory /usr/src/sbin/atm/atm/atm_set.c:60: libatm.h: No such file or directory /usr/src/sbin/atm/atm/atm_show.c:60: libatm.h: No such file or directory /usr/src/sbin/atm/atm/atm_subr.c:59: libatm.h: No such file or directory mkdep: compile failed *** Error code 1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message