diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-02-12 15:17:30 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-02-12 15:17:30 +0000 |
commit | 2f978feb67c29ce3eb866aa719ed75ebdaabf4d1 (patch) | |
tree | f61c658fbc5aa098e4fc86b67ac7a2d323793020 /elf/Makefile | |
parent | 5ed61e0fd6177e6ef6054a15ca04d0f5e90851d8 (diff) | |
download | glibc-2f978feb67c29ce3eb866aa719ed75ebdaabf4d1.tar glibc-2f978feb67c29ce3eb866aa719ed75ebdaabf4d1.tar.gz glibc-2f978feb67c29ce3eb866aa719ed75ebdaabf4d1.tar.bz2 glibc-2f978feb67c29ce3eb866aa719ed75ebdaabf4d1.zip |
* elf/rtld.c (RESOLVE_MAP): Always return bootstrap_map reference.
* elf/Makefile ($(objpfx)ld.so): Check that ld.so has no undefined
references.
Diffstat (limited to 'elf/Makefile')
-rw-r--r-- | elf/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/elf/Makefile b/elf/Makefile index afebaec1ec..1c5b16908a 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1995-2004, 2005, 2006 Free Software Foundation, Inc. +# Copyright (C) 1995-2004, 2005, 2006, 2007 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -307,6 +307,7 @@ $(objpfx)ld.so: $(objpfx)librtld.os $(ld-map) $(filter-out $(map-file),$^) $(load-map-file) \ -Wl,-soname=$(rtld-installed-name) -T $@.lds rm -f $@.lds + nm -u $@ | cmp -s /dev/null - # interp.c exists just to get this string into the libraries. CFLAGS-interp.c = -D'RUNTIME_LINKER="$(slibdir)/$(rtld-installed-name)"' \ |