Date: Wed, 19 Apr 2000 12:14:13 -0400 (EDT) From: Mikhail Teterin <mi@privatelabs.com> To: stable@freebsd.org Subject: second installworld fails Message-ID: <200004191614.MAA78615@misha.privatelabs.com>
next in thread | raw e-mail | index | archive | help
Hi! I tried to installworld over NFS after a buildworld on one machine.
Regretfully, mounting /usr/obj and /usr/src read-only is not an option
-- some processing is happening at the install stage... And mounting
read-write causes errors. I fixed one of them, caused by ln trying to
make an already existing link:
--- lib/libncurses/Makefile Thu Mar 2 03:23:23 2000
+++ lib/libncurses/Makefile Wed Apr 19 11:37:45 2000
@@ -390,4 +390,5 @@
all-man: ${page:T:S/3x$/3/g}
${page:T:S/3x$/3/g}: ${page}
+ rm -f ${.TARGET}
ln -s ${.ALLSRC} ${.TARGET}
.endfor
but now the following error would not go away :(
===> gnu/usr.bin/perl/miniperl
install -c -s -o root -g wheel -m 555 miniperl /usr/bin
/usr/bin/perl -> /usr/bin/miniperl
===> gnu/usr.bin/perl/perl
install -c -s -o root -g wheel -m 555 perl /usr/bin
/usr/bin/perl5 -> /usr/bin/perl
/usr/bin/perl5.00503 -> /usr/bin/perl
make: don't know how to make Makefile.PL. Stop
*** Error code 2
Stop in ..../src/gnu/usr.bin/perl/perl.
*** Error code 1
When yet another machine runs installworld... Could this, please, be
corrected? Ideally, I'd like to be able to, may be, even burn /usr/src
and /usr/obj onto a CD and upgrade machines like that (or the ro NFS).
"Don't put off 'till beforinstall what can be done in all" :-) Thanks!
-mi
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-stable" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200004191614.MAA78615>
