diff options
author | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2004-01-12 08:37:32 +0000 |
---|---|---|
committer | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2004-01-12 08:37:32 +0000 |
commit | ab0a016c08211485e2949df271a675261899a86b (patch) | |
tree | c182acd484c9fcb1567ea28abaf4479de153135f /release/Makefile | |
parent | 1b427c9cd43a3d10a98939d1ad64927e91baea64 (diff) | |
download | src-ab0a016c08211485e2949df271a675261899a86b.tar.gz src-ab0a016c08211485e2949df271a675261899a86b.zip |
Use /etc/rc.d/ldconfig script rather than the ldconfig command directly.
Submitted by: matusita
Notes
Notes:
svn path=/head/; revision=124418
Diffstat (limited to 'release/Makefile')
-rw-r--r-- | release/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/release/Makefile b/release/Makefile index 77f3291a8a00..d0eb082b8045 100644 --- a/release/Makefile +++ b/release/Makefile @@ -450,7 +450,7 @@ release rerelease: # NB: these may fail if the host is running w/o devfs echo "umount /dev >/dev/null 2>&1 || true" >> ${_MK} echo "mount -t devfs devfs /dev >/dev/null 2>&1 || true" >> ${_MK} - echo "ldconfig /lib /usr/lib /usr/local/lib" >> ${_MK} + echo "/etc/rc.d/ldconfig start" >> ${_MK} echo "if [ ! -f /tmp/.world_done ]; then" >> ${_MK} echo " cd /usr/src" >> ${_MK} echo " ${CROSSMAKE} ${WORLD_FLAGS} -DNOCLEAN buildworld && \\" >> ${_MK} |