diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-12-12 09:54:47 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-12-12 09:54:47 +0000 |
commit | 00927a947e3abd184e37225d455e7eee572f1377 (patch) | |
tree | ec0826ce432342f4b07de60833145cc5b0143a8d /gnu/usr.bin/ld/rtld | |
parent | e54fc4e9843d2a2fdcbb8ef7829dcd0337fe8d7b (diff) |
don't link LIBCRT0 into ld.so (for DESTDIR builds); PR2928; ok fgsch@, millert@
Diffstat (limited to 'gnu/usr.bin/ld/rtld')
-rw-r--r-- | gnu/usr.bin/ld/rtld/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/usr.bin/ld/rtld/Makefile b/gnu/usr.bin/ld/rtld/Makefile index 9d527e67b41..6615172747e 100644 --- a/gnu/usr.bin/ld/rtld/Makefile +++ b/gnu/usr.bin/ld/rtld/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.7 2002/05/11 00:20:18 espie Exp $ +# $OpenBSD: Makefile,v 1.8 2002/12/12 09:54:46 markus Exp $ # $NetBSD: Makefile,v 1.11 1995/10/09 00:11:24 pk Exp $ PROG= ld.so @@ -6,6 +6,7 @@ SRCS= mdprologue.S rtld.c malloc.c shlib.c etc.c md.c vfprintf.c #NOMAN= noman MAN= ld.so.1 LDDIR?= $(.CURDIR)/.. +LIBCRT0= #PICFLAG=-pic # As there is relocation going on behind GCC's back, don't cache function addresses. PICFLAG=-fpic -fno-function-cse |