@@ -190,14 +190,14 @@ # generate syscall tables if test $posix = yes; then # on posix, we simply abuse CPP to garner a list of syscalls; - # the file arch/posix_syscalls contains a list of syscalls + # the file arch/posix/syscalls contains a list of syscalls # we wish to import; we use sed to transform this into a form # that cpp will fill out for us, producing a table that the # awk scripts can handle and turn into a list of constants. echo '#include ' > $gen/system_calls.t.1 # this is the magic part - cat arch/posix_syscalls > $gen/system_calls.t.2 + cat arch/posix/syscalls > $gen/system_calls.t.2 sed -e 's;^\(.*\)$;\1 SYS_\1;' -i $gen/system_calls.t.2 cat $gen/system_calls.t.1 $gen/system_calls.t.2 | cpp -P >$gen/system_calls.tbl else case $os in