Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/bin/sh Use signed char to replace int8_t, not just char. Sho...



details:   https://anonhg.NetBSD.org/src/rev/e1185c1c1179
branches:  trunk
changeset: 538832:e1185c1c1179
user:      wrstuden <wrstuden%NetBSD.org@localhost>
date:      Thu Oct 31 17:14:46 2002 +0000

description:
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.

diffstat:

 bin/sh/Makefile |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 0e5979ca7dbc -r e1185c1c1179 bin/sh/Makefile
--- a/bin/sh/Makefile   Thu Oct 31 15:35:28 2002 +0000
+++ b/bin/sh/Makefile   Thu Oct 31 17:14:46 2002 +0000
@@ -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 @@
        (${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



Home | Main Index | Thread Index | Old Index