Subject: Re: CVS commit: [netbsd-1-6] basesrc/bin/sh
To: Havard Eidnes <he@netbsd.org>
From: Bill Studenmund <wrstuden@netbsd.org>
List: source-changes
Date: 12/05/2002 15:39:53
On Sun, 1 Dec 2002, Havard Eidnes wrote:

>
> Module Name:	basesrc
> Committed By:	he
> Date:		Sun Dec  1 12:03:46 UTC 2002
>
> Modified Files:
> 	basesrc/bin/sh [netbsd-1-6]: Makefile
>
> Log Message:
> Pull up revision 1.59 (requested by thorpej in ticket #819):
>   Use ``unsigned char'' and ``char'' instead of ``u_int8_t''
>   and ``int8_t'' for TARGET_CHAR when building mksyntax.
>   This lets the host tool work on non-BSD systems without
>   causing too many changes to how sh is built.

Note: that won't work. It should be ``signed char'', not char. int8_t is
always signed, while char isn't on unsigned char systems.

Take care,

Bill