Skip to content

Commit

Permalink
Fiji Build: fix long-standing tyop
Browse files Browse the repository at this point in the history
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
  • Loading branch information
dscho committed Dec 24, 2010
1 parent ad9dd17 commit ed6a8ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-plugins/fake/fiji/build/Fake.java
Original file line number Diff line number Diff line change
Expand Up @@ -1510,7 +1510,7 @@ public class CompileJar extends Rule {

public String getVar(String var) {
String value = super.getVar(var);
if (isVarName(value, "CLASSPATH")) {
if (isVarName(var, "CLASSPATH")) {
if (classPath != null) {
return (value == null) ? classPath
: (value + ":" + classPath);
Expand Down

0 comments on commit ed6a8ef

Please sign in to comment.