The following reply was made to PR misc/165085; it has been noted by GNATS.
From: "Eugene M. Zheganin" <e...@norma.perm.ru> To: bug-follo...@freebsd.org, eug...@zhegan.in Cc: Subject: Re: misc/165085: nanobsd building broken Date: Mon, 13 Feb 2012 13:11:14 +0600 This is a multi-part message in MIME format. --------------000001050708060402050203 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit The following diff make the installworld stage find the install binary and pass past first error. But the building crashes on the next issue: -------------------------------------------------------------- >>> Installing everything -------------------------------------------------------------- cd /usr/src; make -f Makefile.inc1 install ===> share/info (install) install -o root -g wheel -m 444 dir-tmpl /usr/obj/nanobsd.alix//_.w/usr/share/info/dir ===> lib (install) ===> lib/csu/i386-elf (install) install -o root -g wheel -m 444 crti.o crtn.o gcrt1.o crt1.o Scrt1.o /usr/obj/nanobsd.alix//_.w/usr/lib ===> lib/libc (install) install -C -o root -g wheel -m 444 libc.a /usr/obj/nanobsd.alix//_.w/usr/lib install: libc.a: No such file or directory *** Error code 71 1 error *** Error code 2 1 error *** Error code 2 1 error *** Error code 2 1 error *** Error code 2 1 error *** Error code 2 1 error --------------000001050708060402050203 Content-Type: text/plain; name="diff.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="diff.txt" --- Makefile.inc1.old 2012-02-13 04:10:40.776381435 +0600 +++ Makefile.inc1 2012-02-13 04:08:57.490391177 +0600 @@ -321,12 +321,12 @@ IMAKEENV= ${CROSSENV} IMAKE= ${IMAKEENV} ${MAKE} -f Makefile.inc1 .if empty(.MAKEFLAGS:M-n) -IMAKEENV+= PATH=${STRICTTMPPATH}:${INSTALLTMP} \ +IMAKEENV+= PATH=${PATH}:${STRICTTMPPATH}:${INSTALLTMP} \ LD_LIBRARY_PATH=${INSTALLTMP} \ PATH_LOCALE=${INSTALLTMP}/locale IMAKE+= __MAKE_SHELL=${INSTALLTMP}/sh .else -IMAKEENV+= PATH=${TMPPATH}:${INSTALLTMP} +IMAKEENV+= PATH=${PATH}:${TMPPATH}:${INSTALLTMP} .endif # kernel stage --------------000001050708060402050203-- _______________________________________________ freebsd-bugs@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"