This is the mail archive of the
java-patches@sourceware.cygnus.com
mailing list for the Java project.
Re: [IRIX 6.2] Support n64 libgcj multilibs
> Rainer> This didn't fix the whole problem, though: the generated
> Rainer> libtool's embed the compiler etc. options passed at configure
> Rainer> time, and the current config-ml.in fails to pass the necessary
> Rainer> multilib flags. I've already sent a fix for this to
> Rainer> egcs-patches:
>
> Thanks, I checked this in.
Thanks. When doing a cvs update, I noticed that a problem has crept into
this patch. The following patch fixes this.
Rainer
Mon Sep 6 20:18:20 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* config-ml.in: Don't use html entity.
Index: config-ml.in
===================================================================
RCS file: /cvs/java/libgcj/config-ml.in,v
retrieving revision 1.3
diff -u -p -r1.3 config-ml.in
--- config-ml.in 1999/08/14 00:37:39 1.3
+++ config-ml.in 1999/09/06 18:13:03
@@ -692,7 +692,7 @@ if [ -n "${multidirs}" ] && [ -z "${ml_n
fi
# find compiler flag corresponding to ${ml_dir}
- for i in `${CC-gcc} --print-multi-lib 2>/dev/null`; do
+ for i in `${CC-gcc} --print-multi-lib 2>/dev/null`; do
dir=`echo $i | sed -e 's/;.*$//'`
if [ "${dir}" = "${ml_dir}" ]; then
flags=`echo $i | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`