* 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.
This commit is contained in:
Roland McGrath 2003-03-14 23:37:15 +00:00
parent b5d1dbc641
commit c58859ce3a
4 changed files with 15 additions and 2 deletions

View File

@ -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.

View File

@ -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

View File

@ -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; \

View File

@ -1 +1 @@
#include <sysdeps/unix/common/pause.c>
#include <sysdeps/posix/pause.c>