----- Original Message -----
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Thursday, September 06, 2001 3:53 PM
Subject: [Bug 4783] Changed - bash get's stuck in an infinite loop during
.bashrc processing
> https://qa.mandrakesoft.com/cgi-bin/show_bug.cgi?id=4783
> +This is wrong :
> +
> +CLASSPATH=`mkpath /usr/java/lib/*.jar`:$CLASSPATH
> +
> +change it to :
> +
> +CLASSPATH=`mkpath /usr/java/lib/*.jar`; export CLASSPATH
Sorry, but it is NOT wrong. The export CLASSPATH is further down in the
script.
This should be a perfectly valid way of adding data to the class path:
1) It worked under LM8.0.
2) It works when login via the console.
3) Your "corrected" version blows up even worse...
Even if it weren't right, it still shouldn't send bash into an (near)
infinite loop!
-Jason