Date: Wed, 16 Sep 1998 15:15:28 -0500 (CDT) From: Mike Spengler <mks@networkcs.com> To: mystify@friley-186-113.res.iastate.edu (Patrick Hartling) Cc: freebsd-current@FreeBSD.ORG Subject: Re: 'make world' dying in sbin/atm/atm Message-ID: <199809162015.PAA07770@us.networkcs.com> In-Reply-To: <199809161755.MAA21385@friley-186-113.res.iastate.edu> from Patrick Hartling at "Sep 16, 98 12:55:22 pm"
next in thread | previous in thread | raw e-mail | index | archive | help
This is probably the correct fix for this (I believe - haven't done the elf upgrade yet): Index: Makefile.inc1 =================================================================== RCS file: /usr/local/src/vault/freebsd/src/Makefile.inc1,v retrieving revision 1.14 diff -u -r1.14 Makefile.inc1 --- Makefile.inc1 1998/09/15 11:44:30 1.14 +++ Makefile.inc1 1998/09/16 20:12:32 @@ -561,6 +561,7 @@ cd ${.CURDIR}/lib/csu/${MACHINE_ARCH}; ${MAKE} beforeinstall .endif cd ${.CURDIR}/lib/libalias; ${MAKE} beforeinstall + cd ${.CURDIR}/lib/libatm; ${MAKE} beforeinstall cd ${.CURDIR}/lib/libdevstat; ${MAKE} beforeinstall cd ${.CURDIR}/lib/libc; ${MAKE} beforeinstall cd ${.CURDIR}/lib/libcalendar; ${MAKE} beforeinstall Patrick Hartling said: > My world build (make -DNOAOUT -DNOCLEAN world, /usr/obj clean, fairly fresh > sources including the most recent changes to all the HARP files) is dying > while trying to make dependencies for sbin/atm/atm as follows: > > ===> sbin > ===> sbin/atm > ===> sbin/atm/atm > rm -f .depend > mkdep -f .depend -a -I/usr/src/sbin/atm/atm/../../../sys -I/usr/obj/elf/usr/s > rc/tmp/usr/include /usr/src/sbin/atm/atm/atm.c /usr/src/sbin/atm/atm/atm_fore20 > 0.c /usr/src/sbin/atm/atm/atm_eni.c /usr/src/sbin/atm/atm/atm_inet.c /usr/src/sb > in/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 > > Stop. > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > > Adding -I${.OBJDIR}/../../../lib/libatm to ${CFLAGS} seems to fix it, but > this doesn't seem like the best solution. Also, in trying to build it in > /usr/src/sbin/atm/atm with a simple 'make', it dies while trying to find > libatm. Is no one else having this problem? > > -Patrick > > > Patrick L. Hartling | Research Assistant, ICEMT > mystify@friley-186-113.res.iastate.edu | SE Lab - 1117 Black Engineering > http://www.public.iastate.edu/~oz/ | http://www.icemt.iastate.edu/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message > -- Mike Spengler Network Computing Services, Inc. Email: mks@networkcs.com 1200 Washington Ave. So. Phone: +1 612 337 3557 Minneapolis MN 55415 FAX: +1 612 337 3400 (aka Minnesota Supercomputer Center) 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?199809162015.PAA07770>