https://bugzilla.novell.com/show_bug.cgi?id=224732 rguenther@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |schwab@novell.com Status|RESOLVED |REOPENED Resolution|WORKSFORME | ------- Comment #8 from rguenther@novell.com 2006-11-30 04:06 MST ------- So this is a bug in libtool which I can work around in glame as well. Libtool does # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test "$need_locks" = yes; then until $run ln "$progpath" "$lockfile" 2>/dev/null; do $show "Waiting for $lockfile to be removed" sleep 2 done and later # Unlock the critical section if it was locked if test "$need_locks" != no; then $run $rm "$lockfile" fi which will not do the right thing if $lockfile starts with a hyphen. -- 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, or are watching someone who is.