diff options
author | nate <nate@FreeBSD.org> | 1998-02-19 00:24:43 +0000 |
---|---|---|
committer | nate <nate@FreeBSD.org> | 1998-02-19 00:24:43 +0000 |
commit | 9abc0e86f89fb977e2757ebb5aa02559299c1d42 (patch) | |
tree | 55558b091fa1249969e2a5a03955ea0d19398f2f | |
parent | bc6fcbb867bc5ca929670ef3f7909dcc617d9898 (diff) | |
download | FreeBSD-src-9abc0e86f89fb977e2757ebb5aa02559299c1d42.zip FreeBSD-src-9abc0e86f89fb977e2757ebb5aa02559299c1d42.tar.gz |
MF22:
- After the install has been done, but before makedb is run, run
'ldconfig -R' to pick up new shlib dependencies.
Suggested by: Amancio and a whole lot of other folks
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.156 1998/01/11 04:51:02 jb Exp $ +# $Id: Makefile,v 1.157 1998/02/06 09:52:24 adam Exp $ # # While porting to the Alpha architecture include the bootstrap instead # of the normal build. @@ -334,6 +334,11 @@ reinstall: cd ${.CURDIR} && ${MAKE} install @echo @echo "--------------------------------------------------------------" + @echo " Re-scanning the shared libraries.." + @echo "--------------------------------------------------------------" + cd ${.CURDIR} && ldconfig -R + @echo + @echo "--------------------------------------------------------------" @echo " Rebuilding man page indexes" @echo "--------------------------------------------------------------" cd ${.CURDIR}/share/man && ${MAKE} makedb |