Hi Ossama,
On Thu, 25 May 2000, Ossama Othman wrote:
> > It's smoking already ;) Even with problem reports ;)
>
> Great! Well, at least for the libtool team. :-)
Hehe ;)
> > Btw. just a small thing: in all 'case' statements testing for $CXX you
> > should use $compiler, as $CXX can have arguments. In fact it is set
> > already in the beginning, just not used. No diff, because it would be
> > larger than the description ;)
>
> Hmm, I though that Alexandre as already took care of this. It must've
> been a patch that wasn't integrated. Alexandre, should I integrate
> your patch?
Hmm, it seems the newest diff to libtool-ml has something, but it only
deals with stripping an eventual path, the diff below deals with that
(it also uses CXX not CC, though they should be the same):
Ciao,
Michael.
diff -u -r1.1.2.11 ltcf-cxx.sh
--- ltcf-cxx.sh 2000/05/26 05:49:14 1.1.2.11
+++ ltcf-cxx.sh 2000/05/26 20:29:49
@@ -54,7 +54,7 @@
set dummy $CC
CC=${CC-"$CXX"}
CFLAGS=${CFLAGS-"$CXXFLAGS"}
-cc_basename=`$echo X"$CC" | $Xsed -e 's%^.*/%%'`
+cc_basename=`$echo X"$compiler" | $Xsed -e 's%^.*/%%'`
# Check if we are using GNU gcc (taken/adapted from configure script)
# We need to check here since "--with-gcc" is set at configure time,