Use signed char to replace int8_t, not just char. Should fix macppc
cross-build problems introduced in rev 1.59. Pointed out by Valeriy E. Ushakov uwe at ptc dot spbu dot ru on tech-toolchain.
This commit is contained in:
parent
471dfb05bc
commit
5b0a9938fd
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.59 2002/09/15 00:19:22 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.60 2002/10/31 17:14:46 wrstuden Exp $
|
||||
# @(#)Makefile 8.4 (Berkeley) 5/5/95
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
@ -55,7 +55,7 @@ mknodes: mknodes.c
|
|||
(${MACHINE_CPU} == "arm")
|
||||
TARGET_CHARFLAG= -DTARGET_CHAR="unsigned char"
|
||||
.else
|
||||
TARGET_CHARFLAG= -DTARGET_CHAR="char"
|
||||
TARGET_CHARFLAG= -DTARGET_CHAR="signed char"
|
||||
.endif
|
||||
|
||||
mksyntax: mksyntax.c
|
||||
|
|
Loading…
Reference in New Issue