diff options
author | bde <bde@FreeBSD.org> | 1998-06-06 01:13:21 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-06-06 01:13:21 +0000 |
commit | b1fe1cc67c97c7706150de9c264226a411fc3d58 (patch) | |
tree | 3b6481dda154723990dda0712650d5f1e9799109 /Makefile | |
parent | 55772ed9c6adb7c30179f4ca7a75cd6b5d6a6bc0 (diff) | |
download | FreeBSD-src-b1fe1cc67c97c7706150de9c264226a411fc3d58.zip FreeBSD-src-b1fe1cc67c97c7706150de9c264226a411fc3d58.tar.gz |
Don't run the target's ldconfig or build it as a tool. If target == host
(in particular, if DESTDIR is empty or "/"), then the host's ldconfig will
be the target's ldconfig by the time it is run.
Fixed disordering of env.
Don't know too much about libcrypt. Use exactly the same definition of
_libcrypt as lib/Makefile.
Don't build strip twice.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 5 insertions, 11 deletions
@@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.196 1998/06/05 16:50:45 jkh Exp $ +# $Id: Makefile,v 1.197 1998/06/06 00:56:23 bde Exp $ # # While porting to the another architecture include the bootstrap instead # of the normal build. @@ -362,7 +362,7 @@ reinstall: @echo "--------------------------------------------------------------" @echo " Re-scanning the shared libraries.." @echo "--------------------------------------------------------------" - cd ${.CURDIR}; ldconfig -R + cd ${.CURDIR}; /sbin/ldconfig -R .endif @echo @echo "--------------------------------------------------------------" @@ -598,7 +598,6 @@ _aout_nm = usr.bin/nm _aout_ranlib = usr.bin/ranlib _aout_size = usr.bin/size _aout_strip = usr.bin/strip -_aout_ldconfig = sbin/ldconfig _objformat = usr.bin/objformat .endif @@ -607,7 +606,6 @@ _objformat = usr.bin/objformat # # XXX gperf is required for cc # XXX a new ld and tsort is required for cc -# XXX ldconfig is required at the end of reinstall/installworld. lib-tools: .for d in \ gnu/usr.bin/gperf \ @@ -617,15 +615,14 @@ lib-tools: gnu/usr.bin/bison \ gnu/usr.bin/cc \ ${_aout_ar} \ + usr.bin/env \ usr.bin/lex/lib \ usr.bin/mk_cmds \ ${_aout_nm} \ ${_aout_ranlib} \ ${_aout_strip} \ - usr.bin/env \ gnu/usr.bin/binutils \ usr.bin/uudecode \ - ${_aout_ldconfig} \ ${_objformat} cd ${.CURDIR}/$d; ${MAKE} ${MK_FLAGS} ${_DEPEND}; \ ${MAKE} ${MK_FLAGS} all; \ @@ -655,10 +652,8 @@ _csu=lib/csu/${MACHINE}.pcc _csu=lib/csu/${MACHINE} .endif -# Build the "default" libcrypt first since it sets symlinks for static -# binaries such as /sbin/init. lib/Makefile builds the other if needed. -.if exists(secure) && !defined(NOSECURE) && !defined(NOCRYPT) -_libcrypt= secure/lib/libcrypt +.if !defined(NOSECURE) && !defined(NOCRYPT) +_libcrypt= secure/lib/libcrypt lib/libcrypt .else _libcrypt= lib/libcrypt .endif @@ -781,7 +776,6 @@ build-tools: usr.bin/sed \ ${_aout_size} \ usr.bin/soelim \ - ${_aout_strip} \ usr.bin/symorder \ usr.bin/touch \ usr.bin/tr \ |