This is the mail archive of the java@gcc.gnu.org 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]
Other format: [Raw text]

Re: libjava "make install" silent failures


On Mar 16, 2002, Bryce McKinlay <bryce@waitaki.otago.ac.nz> wrote:

> Alexandre Oliva wrote:
>> On Mar 15, 2002, Bryce McKinlay <bryce@waitaki.otago.ac.nz> wrote:
>> 
>>> The ltmain.sh patch also appears to fix the problem.
>>> 
>> 
>> Great, here's what I'm checking in mainline and 3.1 branch.  It's a
>> slightly modified version of the patch that doesn't trigger an
>> sanity-check error in the libtool testsuite.
>> 
>> Other libtoolers, ok to install a very similar patch in libtool mainline
>> (and perhaps in the 1.4 branch, just in case)?

GRR!  Apparently, after testing the patch I had for GCC and while
preparing a patch for libtool mainline, I goofed and modified the
buffer in the GCC tree, adding an open paren so that it matched the
code in libtool mainline but failing to close it :-(

Here's a fix.  My apologies.

Index: ChangeLog
from  Alexandre Oliva  <aoliva@redhat.com>

	* ltmain.sh (relink_command): Fix typo in previous change.

Index: ltmain.sh
===================================================================
RCS file: /cvs/gcc/egcs/ltmain.sh,v
retrieving revision 1.18
diff -u -p -r1.18 ltmain.sh
--- ltmain.sh 2002/03/15 23:02:08 1.18
+++ ltmain.sh 2002/03/16 14:40:09
@@ -4305,7 +4305,7 @@ fi\
       for tag in $taglist; do
         tagopts="$tagopts --tag $tag"
       done
-      relink_command="(cd `pwd`; $SHELL $0$tagopts --mode=relink $libtool_args"
+      relink_command="(cd `pwd`; $SHELL $0$tagopts --mode=relink $libtool_args)"
       relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
 
       # Only create the output if not a dry run.

-- 
Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat GCC Developer                  aoliva@{cygnus.com, redhat.com}
CS PhD student at IC-Unicamp        oliva@{lsd.ic.unicamp.br, gnu.org}
Free Software Evangelist                Professional serial bug killer

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