Bug 28609 - make install broken in current trunk (svn 115947)
Summary: make install broken in current trunk (svn 115947)
Status: RESOLVED FIXED
Alias: None
Product: gcc
Classification: Unclassified
Component: libgcj (show other bugs)
Version: 4.2.0
: P3 normal
Target Milestone: 4.2.0
Assignee: Not yet assigned to anyone
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-08-05 14:36 UTC by bero
Modified: 2006-08-07 20:39 UTC (History)
2 users (show)

See Also:
Host:
Target:
Build:
Known to work:
Known to fail:
Last reconfirmed:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description bero 2006-08-05 14:36:12 UTC
make install DESTDIR=/var/tmp/gcc-root with gcj enabled currently results in:


/usr/bin/install -c .libs/libgjsmalsa.a /var/tmp/gcc-root/usr/lib/gcj-4.2.0/libgjsmalsa.a
$old_postinstall_cmds
../../../libtool: line 5385: $old_postinstall_cmds~i586-ark-linux-ranlib: command not found
make[7]: *** [install-nativeexeclibLTLIBRARIES] Error 127
make[7]: Leaving directory `/usr/src/ark/BUILD/gcc-4.2.0/build/i586-ark-linux/libjava/classpath/native/jni/midi-alsa'
make[6]: *** [install-am] Error 2
Comment 1 bero 2006-08-05 22:33:04 UTC
Seems to be caused by classpath needing a different version of libtool than gcc.

This fixed it for me:

cp -f ltconfig libjava/classpath
Comment 2 Tom Tromey 2006-08-07 20:37:58 UTC
Subject: Bug 28609

Author: tromey
Date: Mon Aug  7 20:37:50 2006
New Revision: 116003

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=116003
Log:
	PR libgcj/28609:
	* ltconfig: Copied from gcc.

Modified:
    trunk/libjava/classpath/ChangeLog.gcj
    trunk/libjava/classpath/ltconfig

Comment 3 Tom Tromey 2006-08-07 20:39:43 UTC
I took your advice and checked in the result of that cp.
Thanks!