summaryrefslogtreecommitdiff
path: root/extra/scripts/gen_bits_syscall_h.sh
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-07-03 03:04:00 +0000
committerEric Andersen <andersen@codepoet.org>2001-07-03 03:04:00 +0000
commit445db497a2bc10e8d7967ca3961b3adabc597da1 (patch)
tree25ea46eeabdc9ce0bd806acb9f979836495c8247 /extra/scripts/gen_bits_syscall_h.sh
parent08423103bab7a9120506811d416e904e60d1aab3 (diff)
Just take whatever the kernel headers gave us, spaces and all. This is
to accomodate arm, where rmk has made the syscall numbers be very very strangely setup, -Erik
Diffstat (limited to 'extra/scripts/gen_bits_syscall_h.sh')
-rwxr-xr-xextra/scripts/gen_bits_syscall_h.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/scripts/gen_bits_syscall_h.sh b/extra/scripts/gen_bits_syscall_h.sh
index 51f68fcf7..bb31914a5 100755
--- a/extra/scripts/gen_bits_syscall_h.sh
+++ b/extra/scripts/gen_bits_syscall_h.sh
@@ -19,7 +19,7 @@ $CC -E - |
echo "#ifndef _SYSCALL_H" ;
echo "# error \"Never use <bits/syscall.h> directly; include <sys/syscall.h> instead.\"" ;
echo "#endif" ; echo ;
- sed -ne 's/^UCLIBC_\([A-Za-z0-9_]*\) *\([^ ]*\)/#define SYS_\1 \2\
+ sed -ne 's/^UCLIBC_\([A-Za-z0-9_]*\) *\(.*\)/#define SYS_\1 \2\
#define __NR_\1 \2\
#define __STR_NR_\1 \"\2\"/gp'
)