1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Set a more explicit #include path for building aix7xxx_asm, otherwise it

uses /usr/include/sys/*, which may point to a different build tree.  I'm
not sure that this is necessary, but there was a question mark over what
/usr/include/sys points to when building the "user mode" binaries in the
kernel code, especially when building the smp tree.

I suspect that the "right" line here is to use ${INCLUDES}, but that
causes warnings about unused static inline functions in stdio.h and ctype.h
This commit is contained in:
Peter Wemm 1996-11-22 04:27:43 +00:00
parent 18503982d8
commit 2fa4e5a7fc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=19918
2 changed files with 4 additions and 4 deletions

View File

@ -1,11 +1,11 @@
# This file tells config what files go into building a kernel,
# files marked standard are always included.
#
# $Id: files.i386,v 1.144 1996/11/14 22:18:47 sos Exp $
# $Id: files.i386,v 1.145 1996/11/15 18:36:25 jkh Exp $
#
aic7xxx_asm optional ahc device-driver \
dependency "$S/dev/aic7xxx/aic7xxx_asm.c" \
compile-with "${CC} -Wall -o $@ $>" \
compile-with "${CC} -I- -I. -I$S -Wall -o $@ $>" \
no-obj no-implicit-rule \
clean "aic7xxx_asm"
#

View File

@ -1,11 +1,11 @@
# This file tells config what files go into building a kernel,
# files marked standard are always included.
#
# $Id: files.i386,v 1.144 1996/11/14 22:18:47 sos Exp $
# $Id: files.i386,v 1.145 1996/11/15 18:36:25 jkh Exp $
#
aic7xxx_asm optional ahc device-driver \
dependency "$S/dev/aic7xxx/aic7xxx_asm.c" \
compile-with "${CC} -Wall -o $@ $>" \
compile-with "${CC} -I- -I. -I$S -Wall -o $@ $>" \
no-obj no-implicit-rule \
clean "aic7xxx_asm"
#