Date: Wed, 16 Sep 1998 11:05:09 -0700 (PDT) From: Chris Timmons <skynyrd@opus.cts.cwu.edu> To: freebsd-current@FreeBSD.ORG Subject: atm breakage in aout-to-elf Message-ID: <Pine.BSF.3.96.980916105942.23268E-100000@opus.cts.cwu.edu>
next in thread | raw e-mail | index | archive | help
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 <bsd.prog.mk>
===> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.3.96.980916105942.23268E-100000>
