Solved Make Installworld Fails On 9.3 -> 10.4 Upgrade

I have a physical box that's currently on 9.3. My goal is to get it up to 12.1. Following best practice, I'm currently trying to upgrade to 10.4. The buildworld, buildkernel, and installkernel completed without error. I've rebooted after the install kernel and am now trying to installworld. Here's the output:
Code:
--------------------------------------------------------------
>>> Installing everything
--------------------------------------------------------------
cd /usr/src_10.4; /usr/obj/usr/src_10.4/make.amd64/bmake -f Makefile.inc1 install
===> share/info (install)
===> lib (install)
===> lib/csu (install)
===> lib/csu/amd64 (install)
install -o root -g wheel -m 444  crt1.o crti.o crtn.o Scrt1.o gcrt1.o /usr/lib
===> lib/libc (install)
install -C -o root -g wheel -m 444   libc.a /usr/lib
install -C -o root -g wheel -m 444   libc_p.a /usr/lib
install -s -o root -g wheel -m 444   -fschg -S  libc.so.7 /lib
sed -e 's,@@SHLIB@@,/lib/libc.so.7,g'  -e 's,@@LIBDIR@@,/usr/lib,g'  /usr/src_10.4/lib/libc/libc.ldscript > /usr/lib/libc.ld
install -S -C -o root -g wheel -m 444   /usr/lib/libc.ld  /usr/lib/libc.so
rm -f /usr/lib/libc.ld
install -o root -g wheel -m 444   libc_pic.a /usr/lib
gencat be_BY.UTF-8.cat /usr/src_10.4/lib/libc/nls/be_BY.UTF-8.msg
bmake[4]: exec(gencat) failed (No such file or directory)
*** Error code 1

Stop.
bmake[4]: stopped in /usr/src_10.4/lib/libc
*** Error code 1

Stop.
bmake[3]: stopped in /usr/src_10.4/lib
*** Error code 1

Stop.
bmake[2]: stopped in /usr/src_10.4
*** Error code 1

Stop.
bmake[1]: stopped in /usr/src_10.4
*** Error code 1

Stop.
bmake: stopped in /usr/src_10.4
*** [installworld] Error code 1

Stop in /usr/src_10.4.
How can I resolve this?

Thanks,

Drew
 
Code:
...
install -o root -g wheel -m 444 libc_pic.a /usr/lib
gencat be_BY.UTF-8.cat /usr/src_10.4/lib/libc/nls/be_BY.UTF-8.msg
bmake[4]: exec(gencat) failed (No such file or directory)
*** Error code 1
...
Same error on installworld in Thread 31546 (with fix):
Code:
...
install -o root -g wheel -m 444   libc_pic.a /usr/lib
gencat be_BY.UTF-8.cat /usr/src/lib/libc/nls/be_BY.UTF-8.msg
gencat:No such file or directory
*** Error code 1
...
A deleting and re-csupping of the entire /usr/src directory fixed things.
 
It was suggested to me in another thread regarding issues updating another machine to use freebsd-update and save myself a lot of headache. Thus, I did and am now running 12.1-p10.

Thank you for your assistance!

Cheers,

Drew
 
Back
Top