diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-13 01:49:57 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-13 01:49:57 +0000 |
commit | 85b9539f236a5b40b796c6ceba3e9aac83fb0414 (patch) | |
tree | 28aa4ab1656d1e95b7471e11fb4e88ffbf4ac06b /mach | |
parent | a79fccef132e1590493f78035cf90ededf71771f (diff) | |
download | glibc-85b9539f236a5b40b796c6ceba3e9aac83fb0414.tar.gz glibc-85b9539f236a5b40b796c6ceba3e9aac83fb0414.tar.xz glibc-85b9539f236a5b40b796c6ceba3e9aac83fb0414.zip |
2002-05-12 Roland McGrath <roland@frob.com>
* mach/Makefile ($(mach-syscalls:%=$(objpfx)%.S)): Make the generated files #include <sysdep.h> instead of <mach/machine/syscall_sw.h>.
Diffstat (limited to 'mach')
-rw-r--r-- | mach/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mach/Makefile b/mach/Makefile index 9b1e06bd6e..daf92bbc3a 100644 --- a/mach/Makefile +++ b/mach/Makefile @@ -71,7 +71,7 @@ $(objpfx)mach-syscalls.mk: syscalls.awk Makefile # Go kludges!!! $(make-target-directory) # We must use $(CFLAGS) to get -O flags that affect #if's in header files. - echo '#include <mach/syscall_sw.h>' | \ + echo '#include <sysdep.h>' | \ DEPENDENCIES_OUTPUT='$@-dep $@' \ $(CC) $(CFLAGS) $(CPPFLAGS) -E -x c-header - \ -D_MACH_`echo $(base-machine) | tr a-z A-Z`_SYSCALL_SW_H_=1 | \ |