diff options
Diffstat (limited to 'extra/scripts')
-rwxr-xr-x | extra/scripts/gen_bits_syscall_h.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extra/scripts/gen_bits_syscall_h.sh b/extra/scripts/gen_bits_syscall_h.sh index df83bcef1..4c634e7db 100755 --- a/extra/scripts/gen_bits_syscall_h.sh +++ b/extra/scripts/gen_bits_syscall_h.sh @@ -3,7 +3,7 @@ # June 27, 2001 Manuel Novoa III # # This script expects TOPDIR and CC (as used in the Makefiles) to be set in -# the environment, and outputs the appropriate $TOPDIR/include/bits/syscall.h +# the environment, and outputs the appropriate $TOPDIR/include/bits/sysnum.h # corresponding to $TOPDIR/include/asm/unistd.h to stdout. # # Warning!!! This does _no_ error checking!!! @@ -16,10 +16,10 @@ UNISTD_H_PATH=$TOPDIR/include/asm/unistd.h ) | $CC -E - | ( echo "/* WARNING!!! AUTO-GENERATED FILE!!! DO NOT EDIT!!! */" ; echo ; - echo "#ifndef _BITS_SYSCALL_H" ; - echo "#define _BITS_SYSCALL_H" ; + echo "#ifndef _BITS_SYSNUM_H" ; + echo "#define _BITS_SYSNUM_H" ; echo "#ifndef _SYSCALL_H" ; - echo "# error \"Never use <bits/syscall.h> directly; include <sys/syscall.h> instead.\"" ; + echo "# error \"Never use <bits/sysnum.h> directly; include <sys/syscall.h> instead.\"" ; echo "#endif" ; echo ; sed -ne 's/^UCLIBC_\([A-Za-z0-9_]*\) *\(.*\)/#undef __NR_\1\ #define __NR_\1 \2\ |