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 /sysdeps/unix/sysv/linux/Makefile | |
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.
Diffstat (limited to 'sysdeps/unix/sysv/linux/Makefile')
-rw-r--r-- | sysdeps/unix/sysv/linux/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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; \ |