diff options
author | sos <sos@FreeBSD.org> | 1998-05-26 20:12:56 +0000 |
---|---|---|
committer | sos <sos@FreeBSD.org> | 1998-05-26 20:12:56 +0000 |
commit | bc60c8025eefe519b725f9a4d278ec3e887f7e00 (patch) | |
tree | 37210576f0aee50d6bf52bcf2871ece5963fc993 /lib/csu/i386/Makefile | |
parent | 37218a27856974855d62695874c9a46e494374dc (diff) | |
download | FreeBSD-src-bc60c8025eefe519b725f9a4d278ec3e887f7e00.zip FreeBSD-src-bc60c8025eefe519b725f9a4d278ec3e887f7e00.tar.gz |
ELF preparation step 2:
Move a.out libraries to /usr/lib/aout to make space for ELF libs.
Make rtld usr /usr/lib/aout as default library path.
Make ldconfig reject /usr/lib as an a.out library path.
Fix various Makefiles for LIBDIR!=/usr/lib breakage.
This will after a make world & reboot give a system that no
longer uses /usr/lib/*, infact one could remove all the old
libraries there, they are not used anymore.
We are getting close to an ELF make world, but I'll let this
all settle for a week or two...
Diffstat (limited to 'lib/csu/i386/Makefile')
-rw-r--r-- | lib/csu/i386/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/csu/i386/Makefile b/lib/csu/i386/Makefile index e672c07..ab3cd17 100644 --- a/lib/csu/i386/Makefile +++ b/lib/csu/i386/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.6 (Berkeley) 5/22/91 -# $Id: Makefile,v 1.35 1998/02/09 06:05:07 jdp Exp $ +# $Id: Makefile,v 1.36 1998/02/11 04:57:10 jdp Exp $ CFLAGS+= -DLIBC_SCCS -fno-omit-frame-pointer OBJS= crt0.o c++rt0.o gcrt0.o scrt0.o sgcrt0.o @@ -35,7 +35,7 @@ sgcrt0.o: scrt0.o realinstall: ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \ - ${DESTDIR}/usr/lib + ${DESTDIR}/${LIBDIR} depend: .depend |