This is the mail archive of the java-patches@sources.redhat.com mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Patch: use `echo', not `:'


I'm checking this in.  I verified the problem that Phil reported -- it
is in the Solaris /bin/sh and not our configure script.  The
workaround is to use echo and not ":".

2000-12-08  Tom Tromey  <tromey@redhat.com>

	From Phil Edwards:
	* configure: Rebuilt.
	* configure.in: Use echo, not `:', to create .d files.

Tom

Index: configure.in
===================================================================
RCS file: /cvs/java/libgcj/libjava/configure.in,v
retrieving revision 1.69
diff -u -r1.69 configure.in
--- configure.in	2000/11/29 04:53:36	1.69
+++ configure.in	2000/12/08 22:22:11
@@ -794,7 +794,7 @@
 	 d=`echo $f | sed -e 's,/[^/]*$,,'`
 changequote([,])
 	 $srcdir/../mkinstalldirs $d
-	 : > $f
+	 echo > $f
       }
    done
 ],

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]