Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-6]: src/bin/sh Pull up revision 1.60 (requested by thorpej in t...
details: https://anonhg.NetBSD.org/src/rev/8e6265f3b7f7
branches: netbsd-1-6
changeset: 529646:8e6265f3b7f7
user: he <he%NetBSD.org@localhost>
date: Fri Dec 06 23:29:26 2002 +0000
description:
Pull up revision 1.60 (requested by thorpej in ticket #1027):
Use ``signed char'' instead of ``char'' to replace ``int8_t''.
Should fix cross-building problem introudced by the pull-up
in ticket #874.
diffstat:
bin/sh/Makefile | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r 60c4bad03570 -r 8e6265f3b7f7 bin/sh/Makefile
--- a/bin/sh/Makefile Tue Dec 03 22:40:30 2002 +0000
+++ b/bin/sh/Makefile Fri Dec 06 23:29:26 2002 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.57.2.1 2002/12/01 12:03:45 he Exp $
+# $NetBSD: Makefile,v 1.57.2.2 2002/12/06 23:29:26 he 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