diff options
author | Roland McGrath <roland@gnu.org> | 2003-03-14 23:37:15 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-03-14 23:37:15 +0000 |
commit | c58859ce3a98917b7c4f7b1de94fb8ae3f5485cd (patch) | |
tree | 05cc79ed77cef7e0bfc1f37c269b15099b76942a | |
parent | b5d1dbc6414c9c4bb41e3dcaf00b01a89b9aa076 (diff) | |
download | glibc-c58859ce3a98917b7c4f7b1de94fb8ae3f5485cd.tar.gz glibc-c58859ce3a98917b7c4f7b1de94fb8ae3f5485cd.tar.xz glibc-c58859ce3a98917b7c4f7b1de94fb8ae3f5485cd.zip |
* sysdeps/unix/sysv/linux/Makefile (syscall-%.h): Fix a typo.
* sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Include sysdeps/posix/pause.c instead of sysdeps/unix/common/pause.c.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | linuxthreads/ChangeLog | 6 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/Makefile | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/sparc/sparc64/pause.c | 2 |
4 files changed, 15 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index dfbef10b36..32938232b9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2003-03-14 Jakub Jelinek <jakub@redhat.com> + + * sysdeps/unix/sysv/linux/Makefile (syscall-%.h): Fix a typo. + + * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Include + sysdeps/posix/pause.c instead of sysdeps/unix/common/pause.c. + 2003-03-14 Alexandre Oliva <aoliva@redhat.com> * sysdeps/mips/fpu/bits/mathdef.h: New. diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index ae149bd468..862c96ea17 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,9 @@ +2003-03-14 Jakub Jelinek <jakub@redhat.com> + + * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile: New file. + * sysdeps/unix/sysv/linux/sparc/Makefile ($(objpfx)specs): Use full + path for crt[in].o. + 2003-03-14 Alexandre Oliva <aoliva@redhat.com> * sysdeps/mips/pspinlock.c (__pthread_spin_lock): Don't .set diff --git a/sysdeps/unix/sysv/linux/Makefile b/sysdeps/unix/sysv/linux/Makefile index e6d044f9b8..6448224052 100644 --- a/sysdeps/unix/sysv/linux/Makefile +++ b/sysdeps/unix/sysv/linux/Makefile @@ -42,7 +42,7 @@ $(objpfx)syscall-%.h $(objpfx)syscall-%.d: ../sysdeps/unix/sysv/linux/sys/syscal sed -n 's@^#define __NR_\([^ ]*\) .*$$@#define SYS_\1 __NR_\1@p' | \ LC_ALL=C sort > $(@:.d=.h).new32; \ SUNPRO_DEPENDENCIES='$(@:.h=.d)-t $@' \ - $(CC) -E -x c $(sysincludes) $< $(addprefix -U,$(64bit-predefine)) \ + $(CC) -E -x c $(sysincludes) $< $(addprefix -U,$(32bit-predefine)) \ $(addprefix -D,$(64bit-predefine)) -D_LIBC -dM | \ sed -n 's@^#define __NR_\([^ ]*\) .*$$@#define SYS_\1 __NR_\1@p' | \ LC_ALL=C sort > $(@:.d=.h).new64; \ diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/pause.c b/sysdeps/unix/sysv/linux/sparc/sparc64/pause.c index f6f9a4ed9a..2ec5bd39ad 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/pause.c +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/pause.c @@ -1 +1 @@ -#include <sysdeps/unix/common/pause.c> +#include <sysdeps/posix/pause.c> |