"fix" long standing aicasm build glitch. The problem was the

reorganization in rev 1.16 of i386/include/types.h which changed
stdlib.h's use of <machine/types.h>.  The problem was the -I. was causing
machine/types.h to come from the current kernel source, while stdlib.h was
coming from /usr/include.  /usr/include/stdlib.h is as old as the last
'make world', the machine/types.h was as new as the current source.
This commit is contained in:
Peter Wemm 1999-01-17 19:56:02 +00:00
parent 90b66aad9f
commit 6b3daecd80
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=42762
2 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.3 1997/09/03 03:44:32 gibbs Exp $
# $Id: Makefile,v 1.4 1997/09/27 19:37:22 gibbs Exp $
PROG= aicasm
@ -19,7 +19,7 @@ LDADD+= -ll
DEPENDFILE=
.endif
CFLAGS+= -I.
CFLAGS+= -I/usr/include -I.
NOMAN= noman
.ifdef DEBUG

View file

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.3 1997/09/03 03:44:32 gibbs Exp $
# $Id: Makefile,v 1.4 1997/09/27 19:37:22 gibbs Exp $
PROG= aicasm
@ -19,7 +19,7 @@ LDADD+= -ll
DEPENDFILE=
.endif
CFLAGS+= -I.
CFLAGS+= -I/usr/include -I.
NOMAN= noman
.ifdef DEBUG