diff options
Diffstat (limited to 'mach/Makefile')
-rw-r--r-- | mach/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mach/Makefile b/mach/Makefile index a4e4c077f7..cf274ceebb 100644 --- a/mach/Makefile +++ b/mach/Makefile @@ -96,8 +96,8 @@ ifndef mach-syscalls no_deps=t else $(mach-syscalls:%=$(objpfx)%.S): $(objpfx)%.S: $(objpfx)mach-syscalls.mk - (echo '#include <mach/machine/syscall_sw.h>'; \ - echo 'kernel_trap(__$*,$(sysno-$*),$(nargs-$*))'; \ + (echo '#include <sysdep.h>'; \ + echo 'kernel_trap (__$*,$(sysno-$*),$(nargs-$*))'; \ echo 'weak_alias (__$*, $*)') > $@-new mv -f $@-new $@ generated += $(mach-syscalls:=.S) |