On Tue, 23 Nov 2004 [EMAIL PROTECTED] wrote: > Hi, > > I am trying to upgrade an old laptop with 5.2.1 to -STABLE 5.3. As always I > mounted > /usr/src and /usr/obj via NFS to the laptop, but when I try to make > installworld in /usr/ > src, I got: > > ntbk@/usr/src # make installworld > mkdir -p /tmp/install.gS2oCXSs > for prog in [ awk cap_mkdb cat chflags chmod chown date echo egrep find grep > ln > make mkdir mtree mv pwd_mkdb rm sed sh sysctl test true uname wc zic; do cp > `which $prog` /tmp/install.gS2oCXSs; done > +cd /usr/src; MAKEOBJDIRPREFIX=/usr/obj MACHINE_ARCH=i386 > MACHINE=i386 CPUTYPE= GROFF_BIN_PATH=/usr/obj/usr/src/i386/legacy/usr/bin > GROFF_FONT_PATH=/usr/obj/usr/src/i386/legacy/usr/share/groff_font > GROFF_TMAC_PATH=/usr/obj/usr/src/i386/legacy/usr/share/tmac > PATH=/usr/obj/usr/ > src/i386/legacy/usr/sbin:/usr/obj/usr/src/i386/legacy/usr/bin:/usr/obj/usr/src/i386/legacy/ > usr/games:/usr/obj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/obj/usr/src/ > i386/usr/games:/tmp/install.gS2oCXSs make -f Makefile.inc1 reinstall > *** Error code 127
Error 127 = command not found Its not finding the bootstrapped make because the build and install environments don't match. You can try make ALWAYS_CHECK_MAKE=yes installworld to attempt to force a rebuild, but exporting /usr/obj read-only will probably cause that to fail immediately. ache will probably chime in here shortly to say that this is not a supported configuration (where the build and install target machines are not the same release level). -- Doug White | FreeBSD: The Power to Serve [EMAIL PROTECTED] | www.FreeBSD.org _______________________________________________ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-stable To unsubscribe, send any mail to "[EMAIL PROTECTED]"
