[email protected] wrote:
> 
> --NextPart_Webmail_9m3u9jl4l_3819_1229993467_0
> Content-Type: text/plain
> Content-Transfer-Encoding: 8bit
> 
> -------------- Original message from Jack Woehr <[email protected]>: 
> -------------- 
> > [email protected] wrote: 
> > > ./autogen.sh: line 2: $'\r': command not found 
> > \r is CR .. Windows or the Mac has pooped on your files, clean 'em up 
> > and try again. 
> 
> That was my 1st mistake.  I forgot to tell WinCVS to check out the file with 
> Unix terminators.  Thanks!
> 
> Now, I get the following:
> 
> ruf...@winll3w9867 /cygdrive/c/gforth
> $ BUILD-FROM-SCRATCH
> configure.in:216: warning: AC_LIBOBJ(../$arm_cacheflush): you should use 
> literals
> configure.in:216: warning: AC_LIBOBJ(../$arm_cacheflush): you should use 
> literals
> configure.in:216: warning: AC_LIBOBJ(../$arm_cacheflush): you should use 
> literals
> checking for gcc... gcc
> <snip>
> config.status: executing stamp-h commands
> Running: make
> GFORTH="./preforth -p ".:~+:."" ./gfgen
> ./preforth: line 23: test: argument expected

Try applying the patch below.  My guess is that you will still be
missing a Gforth engine, though.

- anton

Index: preforth.in
===================================================================
RCS file: /nfs/unsafe/cvs-repository/src-master/gforth/preforth.in,v
retrieving revision 1.6
diff -u -r1.6 preforth.in
--- preforth.in 25 Oct 2008 17:18:42 -0000      1.6
+++ preforth.in 23 Dec 2008 09:37:46 -0000
@@ -20,7 +20,7 @@
 test -z "$ENGINE" && ENGINE=./gforth
 test -f "@srcdir@/@kernel_fi@" && KERNEL="@srcdir@/@kernel_fi@"
 test -f "@kernel_fi@" && KERNEL="@kernel_fi@"
-if test -f $ENGINE -a -f $KERNEL; then 
+if test -f "$ENGINE" -a -f "$KERNEL"; then 
   path1="$1"
   path2="$2"
   shift; shift

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to