看板 FB_stable 關於我們 聯絡資訊
8-STABLE system csup today FreeBSD xxx.local 8.1-PRERELEASE FreeBSD 8.1-PRERELEASE #0: Fri Jun 18 18:28:03 CEST 2010 root@xxx.local:/usr/obj/usr/src/sys/XXX amd64 make installworld breaks at ===> share/syscons/scrnmaps (install) ../armscii8-2haik8.mk armscii8-2haik8.tmp uuencode armscii8-2haik8.tmp armscii8-2haik8 > armscii8-2haik8.scm uuencode: Command not found. *** Error code 127 Stop in /usr/src/share/syscons/scrnmaps. *** Error code 1 .... I fixed it on that machine by this patch, .... --- share/syscons/scrnmaps/Makefile.orig 2010-06-18 22:48:35.000000000 +0200 +++ share/syscons/scrnmaps/Makefile 2010-06-18 22:48:47.000000000 +0200 @@ -16,7 +16,7 @@ ${SCRMAPS}: ${.TARGET:R}.mk ./${.TARGET:R}.mk ${.TARGET:R}.tmp - uuencode ${.TARGET:R}.tmp ${.TARGET:R} > ${.TARGET} + /usr/bin/uuencode ${.TARGET:R}.tmp ${.TARGET:R} > ${.TARGET} rm -f ${.TARGET:R}.tmp ${SCRMAPS_MK}: ${.TARGET:R} mkscrfil.c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ....but where the /usr/bin-PATH disappeared? -- Damian _______________________________________________ freebsd-stable@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-stable To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org"