From owner-freebsd-current Wed Mar 25 08:30:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA05055 for freebsd-current-outgoing; Wed, 25 Mar 1998 08:30:35 -0800 (PST) (envelope-from owner-freebsd-current@FreeBSD.ORG) Received: from csla.csl.sri.com (csla.csl.sri.com [192.12.33.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA05030 for ; Wed, 25 Mar 1998 08:30:25 -0800 (PST) (envelope-from gilham@csl.sri.com) Received: from snapdragon.csl.sri.com (snapdragon.csl.sri.com [130.107.18.20]) by csla.csl.sri.com (8.8.7/8.8.7) with ESMTP id IAA00102 for ; Wed, 25 Mar 1998 08:25:20 -0800 (PST) Received: from snapdragon.csl.sri.com (localhost.csl.sri.com [127.0.0.1]) by snapdragon.csl.sri.com (8.8.8/8.8.7) with ESMTP id IAA07313 for ; Wed, 25 Mar 1998 08:28:58 -0800 (PST) Message-Id: <199803251628.IAA07313@snapdragon.csl.sri.com> To: current@FreeBSD.ORG Subject: make world Makefile Date: Wed, 25 Mar 1998 08:28:58 -0800 From: Fred Gilham Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is probably a stupid question, but I've noticed that whenever I do a make world in /usr/src I have to make the following change to the Makefile: Original: BMAKE= ${BMAKEENV} ${WORLDTMP}/usr/bin/${MAKE} DESTDIR=${WORLDTMP} # cross make used for compilation XMAKE= ${XMAKEENV} ${WORLDTMP}/usr/bin/${MAKE} DESTDIR=${WORLDTMP} # cross make used for final installation IXMAKE= ${XMAKEENV} ${WORLDTMP}/usr/bin/${MAKE} Change: BMAKE= ${BMAKEENV} ${WORLDTMP}${MAKE} DESTDIR=${WORLDTMP} # cross make used for compilation XMAKE= ${XMAKEENV} ${WORLDTMP}${MAKE} DESTDIR=${WORLDTMP} # cross make used for final installation IXMAKE= ${XMAKEENV} ${WORLDTMP}${MAKE} If I don't do this I get the following error: cd /usr/src && PATH=/usr/obj/usr/src/tmp/sbin:/usr/obj/usr/src/tmp/usr/sbin:/usr/obj/usr/src/tmp/bin:/usr/obj/usr/src/tmp/usr/bin:/pkg/mh/bin:/homes/gilham/bin:/homes/gilham/bin/i386:/usr/local/sbin:/sbin:/usr/sbin:/usr/etc:/usr/local/bin:/bin:/usr/bin:/pkg/bin:/usr/X11R6/bin:/pkg/X11/bin:/usr/openwin/bin BISON_SIMPLE=/usr/obj/usr/src/tmp/usr/share/misc/bison.simple COMPILER_PATH=/usr/obj/usr/src/tmp/usr/libexec:/usr/obj/usr/src/tmp/usr/bin GCC_EXEC_PREFIX=/usr/obj/usr/src/tmp/usr/lib/ LD_LIBRARY_PATH=/usr/obj/usr/src/tmp/usr/lib LIBRARY_PATH=/usr/obj/usr/src/tmp/usr/lib:/usr/obj/usr/src/tmp/usr/lib NOEXTRADEPEND=t /usr/obj/usr/src/tmp/usr/bin//usr/bin/make DESTDIR=/usr/obj/usr/src/tmp hierarchy /usr/obj/usr/src/tmp/usr/bin//usr/bin/make: not found *** Error code 127 I've had to do this for some time, and I've also noticed it for stable as well. Why? What am I doing wrong? -Fred Gilham gilham@csl.sri.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message