diff options
author | Thomas Bushnell, BSG <thomas@gnu.org> | 1996-09-13 06:22:21 +0000 |
---|---|---|
committer | Thomas Bushnell, BSG <thomas@gnu.org> | 1996-09-13 06:22:21 +0000 |
commit | 757dc096f3e4ef5c4a0305b702835293b0325af1 (patch) | |
tree | a3deb22cd02636610703127667965d08689cdf7c /sysdeps/mach | |
parent | 39a0b056676c206b077a8cb9fb18fbe2d66bcc62 (diff) | |
download | glibc-757dc096f3e4ef5c4a0305b702835293b0325af1.tar.gz glibc-757dc096f3e4ef5c4a0305b702835293b0325af1.tar.xz glibc-757dc096f3e4ef5c4a0305b702835293b0325af1.zip |
*** empty log message *** cvs/libc-960913
* sysdeps/mach/Makefile (includes): Add -I$(common-objpfx)mach/. * sysdeps/mach/hurd/Makefile (includes): Add -I$(common-objpfx)hurd/. Reported by Marcus Daniels.
Diffstat (limited to 'sysdeps/mach')
-rw-r--r-- | sysdeps/mach/Makefile | 3 | ||||
-rw-r--r-- | sysdeps/mach/hurd/Makefile | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/mach/Makefile b/sysdeps/mach/Makefile index 2f2a12cb3b..e035d5a82a 100644 --- a/sysdeps/mach/Makefile +++ b/sysdeps/mach/Makefile @@ -19,7 +19,8 @@ ifdef in-Makerules # Look for header files in mach/ under the top-level library source directory. -includes += -I$(..)mach +# Look for generated header files where they get created. +includes += -I$(..)mach -I$(common-objpfx)mach/ ifneq (mach,$(subdir)) # Subdirectories other than mach/ might use the generated Mach headers. diff --git a/sysdeps/mach/hurd/Makefile b/sysdeps/mach/hurd/Makefile index 1fe99f3125..c33cb7d5fe 100644 --- a/sysdeps/mach/hurd/Makefile +++ b/sysdeps/mach/hurd/Makefile @@ -21,7 +21,8 @@ ifdef in-Makerules subdirs := $(filter-out sunrpc,$(subdirs)) # XXX skip broken dirs # Look for header files in hurd/ under the top-level library source directory. -includes += -I$(..)hurd +# Look for generated header files where they get created. +includes += -I$(..)hurd -I$(common-objpfx)hurd/ # Do not use any assembly code from sysdeps/unix (and subdirectories). # This bypasses all the system call stubs and uses any existing posix or |