"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:
parent
90b66aad9f
commit
6b3daecd80
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user