diff options
Diffstat (limited to 'extra')
-rwxr-xr-x | extra/scripts/gen_bits_syscall_h.sh | 2 |
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 a77fc8b22..f6353baa2 100755 --- a/extra/scripts/gen_bits_syscall_h.sh +++ b/extra/scripts/gen_bits_syscall_h.sh @@ -24,7 +24,7 @@ esac ( echo "#include <asm/unistd.h>"; echo "#include <asm/unistd.h>" | - $CC -E $CC_SYSNUM_ARGS $INCLUDE_OPTS - | tee /tmp/bar | + $CC -E $CC_SYSNUM_ARGS $INCLUDE_OPTS - | sed -ne 's/^[ ]*#define[ ]*\(__ARM_NR_\|__NR_\)\([A-Za-z0-9_]*\).*/UCLIBC\1\2 \1\2/gp' \ -e 's/^[ ]*#undef[ ]*\(__ARM_NR_\|__NR_\)\([A-Za-z0-9_]*\).*/UNDEFUCLIBC\1\2 \1\2/gp' # needed to strip out any kernel-internal defines ) | |