UseJava: Fix create_javah CLASSPATH handling on Windows

Preserve semicolons in the value.
This commit is contained in:
Marc Chevrier
2016-01-19 09:52:04 +01:00
committed by Brad King
parent 249aac71d0
commit 18c3714f4f
5 changed files with 42 additions and 5 deletions

View File

@@ -5,6 +5,11 @@ class HelloWorld2
B b;
b = new B();
b.printName();
C c;
c = new C();
c.printName();
System.out.println("Hello World!");
}
}