On Sun, Apr 28, 2002 at 09:49:00AM +0100, Michael Grunditz wrote:
> And.. forgot.
> 
> I have made , and will do some changes in the "as" script , since it
> doesnt work with a standard bourn shell.
> 
> example
> 
> If you use shift 1 without any $1 youl get an error , so the fix is
> 
> if [ "$1" != "" ] ; then
> shift 1
> fi

a bit shorter,

test -n "$1" && shift 1

what sort of shell do you use anyway? I think there
will be some more problems.

> > cant open binary file crt.o

it can be something very stupid, do

strace -f gcc-command 2>1 | grep -i open

is the file actually readable?

Bye
Richard

Reply via email to