[Bug 458866] New: kdvelop hangs on libtool
https://bugzilla.novell.com/show_bug.cgi?id=458866 Summary: kdvelop hangs on libtool Product: openSUSE 11.1 Version: Final Platform: x86-64 OS/Version: openSUSE 11.1 Status: NEW Severity: Critical Priority: P5 - None Component: Development AssignedTo: pth@novell.com ReportedBy: rob.bob.301@hotmail.com QAContact: qa@suse.de Found By: Community User Observed in openSUSE 11.1 RC1 64-bit. Processor: AMD Athlon single core. 4GB RAM. To reproduce: 1. Create the simplest C++ project (auto-generated) 2. Click build project. 3. The process hangs on libtool 4. Then, it seems to be generating endless error report. Note: libtool was added using a separate installation step via Yast -> Software -> software management -> search "libtool" -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=458866 User rob.bob.301@hotmail.com added comment https://bugzilla.novell.com/show_bug.cgi?id=458866#c1 --- Comment #1 from S. P. <rob.bob.301@hotmail.com> 2008-12-12 15:38:26 MST --- I just checked out my c++ project I have been developing using Suse 11.0 I cannot build my project in OpenSUSE 11.1 RC 1 -- the symptoms are exactly the same as in the case of an auto-generated simple c++ project. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=458866 Philipp Thomas <pth@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pth@novell.com AssignedTo|pth@novell.com |kde-maintainers@suse.de -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=458866 User ifmmasvwama@web.de added comment https://bugzilla.novell.com/show_bug.cgi?id=458866#c2 Norbert Meyer <ifmmasvwama@web.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ifmmasvwama@web.de --- Comment #2 from Norbert Meyer <ifmmasvwama@web.de> 2009-01-01 19:52:47 MST --- I had this problem too. Problem: libtool (shell-script) is generated by configure. configure is generated by aclocal, autoheader, ... libtool defines a variable ECHO="echo" but uses a variable $echo The variable echo is empty. This empty variable produce the crash. see also ltmain.sh - search for '\$echo' simple workaround: Add a line echo="echo" after the line ECHO="echo" in libtool (do not replace the line!). This should solve the problem (until the next run of configure). better workaround: change the file /usr/share/aclocal/libtool.m4 (be root!) Save the file first! - search for "_LT_PROC_ECHO_BACKSLASH" (without "") - add the line echo=${lt_ECHO-echo} after the line ECHO=${lt_ECHO-echo} You can also add a modified version of the test follows this line. - add the line _LT_DECL([], [echo], [1], [An echo program that does not interpret backslashes]) near the end of the macro after the line _LT_DECL([], [ECHO], [1], [An echo program that does not interpret backslashes]) - run automake etc., configure -> the generated libtool should contain the line ECHO="echo" and the line echo="echo" -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=458866 Stephan Binner <stbinner@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|Critical |Major Component|Development |KDE3 Priority|P5 - None |P3 - Medium -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=458866 User rob.bob.301@hotmail.com added comment https://bugzilla.novell.com/show_bug.cgi?id=458866#c3 --- Comment #3 from S. P. <rob.bob.301@hotmail.com> 2009-01-16 15:26:13 MST --- Thank you for the workaround. It remedied the issue. Here is the diff of my changes to /usr/share/aclocal/libtool.m4 1069d1068 < echo=${lt_ECHO-echo} 1208,1209d1206 < [An echo program that does not interpret backslashes]) < _LT_DECL([], [echo], [1], -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=458866 User mhopf@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=458866#c4 Matthias Hopf <mhopf@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mhopf@novell.com Component|KDE3 |Development AssignedTo|kde-maintainers@suse.de |pth@novell.com --- Comment #4 from Matthias Hopf <mhopf@novell.com> 2009-01-17 08:07:53 MST --- I think the diff is created the wrong way (think you have to add those lines). Also, as a suggestion, diff -u creates easier readable diffs. Looks like a duplicate of bug 455882. Or the other way round. https://bugzilla.novell.com/show_bug.cgi?id=455882 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=458866 User rob.bob.301@hotmail.com added comment https://bugzilla.novell.com/show_bug.cgi?id=458866#c5 --- Comment #5 from S. P. <rob.bob.301@hotmail.com> 2009-01-18 22:17:55 MST --- Thank you for pointing out the diff direction. I believe you are right about bug 455882. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=458866 User mhopf@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=458866#c6 Matthias Hopf <mhopf@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|Major |Critical --- Comment #6 from Matthias Hopf <mhopf@novell.com> 2009-01-20 04:46:19 MST --- Development is severely hindered by a broken libtool. Raising priority therefore. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=458866 User mhopf@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=458866#c7 --- Comment #7 from Matthias Hopf <mhopf@novell.com> 2009-01-29 04:16:34 MST --- Run 'libtoolize' (invoked by autoreconf, invoked typically by ./autogen.sh). That copies a new libtool into the build directory that's compatible with the installed aclocal files. Of course this doesn't explain why kdevelop creates a wrong version by default. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=458866 Philipp Thomas <pth@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|pth@novell.com |schwab@novell.com -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=458866 User schwab@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=458866#c8 xyzzx xyzzx <schwab@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #8 from xyzzx xyzzx <schwab@novell.com> 2009-02-11 03:36:16 MST --- You can't mix and match macros from different libtool versions. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=458866 User pth@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=458866#c9 --- Comment #9 from Philipp Thomas <pth@novell.com> 2009-03-02 10:32:54 MST --- To #7: I guess kdevelop uses outdated libtool macros/files. If using libtoolize solves the problem, it's a kdevelop bug and needs to be assigned to the kdevelop maintainer(s). -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=458866 User mmccarthy@lojack.com added comment https://bugzilla.novell.com/show_bug.cgi?id=458866#c10 Michael McCarthy <mmccarthy@lojack.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED CC| |mmccarthy@lojack.com Platform|x86-64 |All Resolution|INVALID | --- Comment #10 from Michael McCarthy <mmccarthy@lojack.com> 2009-03-24 08:55:33 MST --- Why is this marked invalid??? It is an issue with they way kdevelop works that needs to be addressed. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=458866 Philipp Thomas <pth@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|schwab@novell.com |kde-maintainers@suse.de Severity|Critical |Normal -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@novell.com