diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2020-04-05 20:14:15 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2020-04-05 20:14:15 +0000 |
commit | e91b1f3179610b0f865fbf427bcd01505e068b0e (patch) | |
tree | 9d1e459fe0b7a1c38304283f9e0616f43806b463 /Makefile | |
parent | abf740ca77efa66761e4abd3371caa40591e306b (diff) |
minor cranking of libraries exposes a problem, details too long to explain.
Run ldconfig -R after installing base libraries, and once again after
installing gnu libraries.
ok kettenis
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.135 2019/12/21 21:39:59 espie Exp $ +# $OpenBSD: Makefile,v 1.136 2020/04/05 20:14:14 deraadt Exp $ # # For more information on building in tricky environments, please see @@ -88,9 +88,11 @@ do-build: cd ${.CURDIR}/lib && \ su ${BUILDUSER} -c 'exec ${MAKE}' && \ NOMAN=1 exec ${MAKE} install + /sbin/ldconfig -R cd ${.CURDIR}/gnu/lib && \ su ${BUILDUSER} -c 'exec ${MAKE}' && \ NOMAN=1 exec ${MAKE} install + /sbin/ldconfig -R su ${BUILDUSER} -c 'exec ${MAKE}' && \ exec ${MAKE} install /bin/sh ${.CURDIR}/distrib/sets/makeetcset ${.CURDIR} ${MAKE} |