diff options
author | Roland McGrath <roland@gnu.org> | 2002-11-23 21:34:16 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-11-23 21:34:16 +0000 |
commit | 27b85a94fb992ee6103d8172819be09075d785be (patch) | |
tree | 54ab10d422177ae96133a667947fcd95d26bbb4d /elf | |
parent | 8faa165fda41f5a6618e83ff33429ac1d827aead (diff) | |
download | glibc-27b85a94fb992ee6103d8172819be09075d785be.tar glibc-27b85a94fb992ee6103d8172819be09075d785be.tar.gz glibc-27b85a94fb992ee6103d8172819be09075d785be.tar.bz2 glibc-27b85a94fb992ee6103d8172819be09075d785be.zip |
2002-11-23 Roland McGrath <roland@redhat.com>
* elf/Makefile ($(objpfx)librtld.mk): Tighten up regexp.
Reported by Luca Barbieri <ldb@ldb.ods.org>.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/Makefile b/elf/Makefile index be83287458..5ed13c4a7d 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -200,7 +200,7 @@ $(objpfx)librtld.map: $(objpfx)dl-allobjs.os $(common-objpfx)libc_pic.a mv -f $@T $@ $(objpfx)librtld.mk: $(objpfx)librtld.map Makefile - sed -n 's@^$(common-objpfx)\([^(]*\)(\(.*.os\))$$@\1 \2@p' $< | \ + sed -n 's@^$(common-objpfx)\([^(]*\)(\([^)]*\.os\))$$@\1 \2@p' $< | \ while read lib file; do \ case $$lib in \ libc_pic.a) \ |