diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-17 21:49:59 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-17 21:49:59 +0000 |
commit | c24e561a344c12f829ffffbf1b5b7b179409b0da (patch) | |
tree | 1f013a4f2623bc54ea06f8f96b4e744093d9d053 /extra/scripts/gen_bits_syscall_h.sh | |
parent | 6ff3e442de2bb267a32f891f896e1c0729a77e67 (diff) |
Replace TOPDIR w/ top_builddir
Diffstat (limited to 'extra/scripts/gen_bits_syscall_h.sh')
-rwxr-xr-x | extra/scripts/gen_bits_syscall_h.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/extra/scripts/gen_bits_syscall_h.sh b/extra/scripts/gen_bits_syscall_h.sh index 280466e0d..78c54a935 100755 --- a/extra/scripts/gen_bits_syscall_h.sh +++ b/extra/scripts/gen_bits_syscall_h.sh @@ -8,14 +8,14 @@ # 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/sysnum.h -# corresponding to $TOPDIR/include/asm/unistd.h to stdout. +# This script expects top_builddir and CC (as used in the Makefiles) to be set in +# the environment, and outputs the appropriate $top_builddir/include/bits/sysnum.h +# corresponding to $top_builddir/include/asm/unistd.h to stdout. # # Warning!!! This does _no_ error checking!!! -UNISTD_H_PATH=$TOPDIR/include/asm/unistd.h -INCLUDE_OPTS="-I$TOPDIR/include" +UNISTD_H_PATH=$top_builddir/include/asm/unistd.h +INCLUDE_OPTS="-I$top_builddir/include" ( echo "#include \"$UNISTD_H_PATH\"" ; $CC -E -dN $INCLUDE_OPTS $UNISTD_H_PATH | # needed to strip out any kernel-internal defines |