Solved Error on freebsd-update install

Hello

I am running FreeBSD 10.1-RELEASE-p9, when running freebsd-update install I get the following message:

Code:
Installing updates...install: ///usr/src/crypto/openssl/util/mkbuildinf.pl: No such file or directory
done.

Please advice.
 
It can be safely ignored. I'm assuming /usr/src is empty on your system. In that case, you can remove the src entry under Components in /etc/freebsd-update.conf to prevent this from happening again. You can either do it manually or copy/paste this:
sed -i '' -e '/^Components/ s/ src//' /etc/freebsd-update.conf

If you do have source, make the path of the directory so the file can be installed when freebsd-update install runs.
mkdir -p /usr/src/crypto/openssl/util
 
Back
Top