Subject: Re: umoria
To: None <Ingerrn@cris.com>
From: Masami and Ken Nakata <masami@fa2.so-net.or.jp>
List: port-mac68k
Date: 02/18/1997 09:11:34
On Mon, 17 Feb 1997 14:14:27 -0500 (EST),
xiamin <Ingerrn@cris.com> wrote:
> alot of errors, all with io.c, do you know how to get make to log them to
> a file?

If you use ash (/bin/sh), bash, ksh, zsh, or any other shell which has
the "Right" syntax of the Bourne shell,

whatever-command-to-compile-the-thing 2>err.log

If you use the evil csh or its ilk,

whatever-command-to-compile-the-thing >&err.log

Ken