summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-08-27 19:31:31 +0000
committerEric Andersen <andersen@codepoet.org>2002-08-27 19:31:31 +0000
commit345b9927e608fd92e6231ef803b940afd6e6558c (patch)
treebe1e753e49b734d3d8f73cc202a9792faedaef34 /extra
parentdbee84a1784a929efcd6f0956ead1dbbf6136462 (diff)
Make sure that bits/syscalls.h always includes bits/syscall.h
-Erik
Diffstat (limited to 'extra')
-rwxr-xr-xextra/scripts/gen_bits_syscall_h.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/extra/scripts/gen_bits_syscall_h.sh b/extra/scripts/gen_bits_syscall_h.sh
index ce599c9b0..df83bcef1 100755
--- a/extra/scripts/gen_bits_syscall_h.sh
+++ b/extra/scripts/gen_bits_syscall_h.sh
@@ -21,7 +21,8 @@ $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 __NR_\1 \2\
+ sed -ne 's/^UCLIBC_\([A-Za-z0-9_]*\) *\(.*\)/#undef __NR_\1\
+#define __NR_\1 \2\
#define SYS_\1 __NR_\1/gp'
echo "#endif" ; echo ;
)