aboutsummaryrefslogtreecommitdiff
path: root/linuxthreads/sysdeps/unix/sysv/linux/x86_64
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-02-21 19:25:36 +0000
committerUlrich Drepper <drepper@redhat.com>2003-02-21 19:25:36 +0000
commit6f50cb0027e20134991525fa43a9b95e7640c9ed (patch)
treec945bf582dd0643558a2023ef812b54f4b65d31a /linuxthreads/sysdeps/unix/sysv/linux/x86_64
parentcef0a48dd199f20461719c667b977264d51da935 (diff)
downloadglibc-6f50cb0027e20134991525fa43a9b95e7640c9ed.tar
glibc-6f50cb0027e20134991525fa43a9b95e7640c9ed.tar.gz
glibc-6f50cb0027e20134991525fa43a9b95e7640c9ed.tar.bz2
glibc-6f50cb0027e20134991525fa43a9b95e7640c9ed.zip
Update.
* sysdeps/x86_64/dl-machine.h (elf_machine_rela) <R_X86_64_PC32>: Check for signed overflow, not unsigned. 2003-02-21 Jakub Jelinek <jakub@redhat.com>
Diffstat (limited to 'linuxthreads/sysdeps/unix/sysv/linux/x86_64')
-rw-r--r--linuxthreads/sysdeps/unix/sysv/linux/x86_64/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/linuxthreads/sysdeps/unix/sysv/linux/x86_64/Makefile b/linuxthreads/sysdeps/unix/sysv/linux/x86_64/Makefile
index f5ad5084c4..28d2e22cd3 100644
--- a/linuxthreads/sysdeps/unix/sysv/linux/x86_64/Makefile
+++ b/linuxthreads/sysdeps/unix/sysv/linux/x86_64/Makefile
@@ -7,6 +7,6 @@ before-compile += $(objpfx)specs
generated += specs
$(objpfx)specs:
$(CC) $(CFLAGS) $(CPPFLAGS) -dumpspecs \
- | sed 's,/usr/lib64/\(crt[in]\.o\),\1,g' > $@.new
+ | sed 's,\(/usr/lib\(\|64\)/\|^\|\([^/a-z]\)\)\(crt[in]\.o\),\3./\4,g' > $@.new
mv -f $@.new $@
endif