On Fri, May 19, 2006 at 05:53:40PM +0200, Florian Kulzer wrote: ... > kdm works again. This suggests to me that the rest of the "then...fi" > section is not responsible for the problem. However, as soon as I > uncomment any of the remaining test expressions, kdm breaks again. An > example for this would be: > > [ -n "$GTK_IM_MODULE" ] # && export GTK_IM_MODULE > > This suggests to me that the problem lies with the test statements. I > hope this helps to clear things up.
I see :-) [ -n "$GTK_IM_MODULE" ] # && export GTK_IM_MODULE || true ir more normally if [ -n "$GTK_IM_MODULE" ]; then export GTK_IM_MODULE fi > Thanks for your time. > > -- > Florian > > > -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

