diff options
| author | William Deegan <bill@baddogconsulting.com> | 2018-09-30 18:20:39 (GMT) |
|---|---|---|
| committer | William Deegan <bill@baddogconsulting.com> | 2018-09-30 18:20:39 (GMT) |
| commit | 6c916c5723add8bd00f891d1bad165b79696400a (patch) | |
| tree | f7bb4c55587712dc07b6e77850f87ebd6404530b /test/Java/java_version_image/com | |
| parent | 748b05d34deacb718a57b2463aa9a1f10958740c (diff) | |
| download | SCons-6c916c5723add8bd00f891d1bad165b79696400a.zip SCons-6c916c5723add8bd00f891d1bad165b79696400a.tar.gz SCons-6c916c5723add8bd00f891d1bad165b79696400a.tar.bz2 | |
change method of finding javac from using full path (which fails when it has a space in it), to appending the path to javac to env['ENV']['PATH']. (Which is basically what msvc/msvs do)
Diffstat (limited to 'test/Java/java_version_image/com')
6 files changed, 66 insertions, 0 deletions
diff --git a/test/Java/java_version_image/com/sub/bar/Example4.java b/test/Java/java_version_image/com/sub/bar/Example4.java new file mode 100644 index 0000000..0748d54 --- /dev/null +++ b/test/Java/java_version_image/com/sub/bar/Example4.java @@ -0,0 +1,11 @@ +package com.sub.bar; + +public class Example4 +{ + + public static void main(String[] args) + { + + } + +} diff --git a/test/Java/java_version_image/com/sub/bar/Example5.java b/test/Java/java_version_image/com/sub/bar/Example5.java new file mode 100644 index 0000000..69d2937 --- /dev/null +++ b/test/Java/java_version_image/com/sub/bar/Example5.java @@ -0,0 +1,11 @@ +package com.other; + +public class Example5 +{ + + public static void main(String[] args) + { + + } + +} diff --git a/test/Java/java_version_image/com/sub/bar/Example6.java b/test/Java/java_version_image/com/sub/bar/Example6.java new file mode 100644 index 0000000..1811b80 --- /dev/null +++ b/test/Java/java_version_image/com/sub/bar/Example6.java @@ -0,0 +1,11 @@ +package com.sub.bar; + +public class Example6 +{ + + public static void main(String[] args) + { + + } + +} diff --git a/test/Java/java_version_image/com/sub/foo/Example1.java b/test/Java/java_version_image/com/sub/foo/Example1.java new file mode 100644 index 0000000..82aac2e --- /dev/null +++ b/test/Java/java_version_image/com/sub/foo/Example1.java @@ -0,0 +1,11 @@ +package com.sub.foo; + +public class Example1 +{ + + public static void main(String[] args) + { + + } + +} diff --git a/test/Java/java_version_image/com/sub/foo/Example2.java b/test/Java/java_version_image/com/sub/foo/Example2.java new file mode 100644 index 0000000..6349ac9 --- /dev/null +++ b/test/Java/java_version_image/com/sub/foo/Example2.java @@ -0,0 +1,11 @@ +package com.other; + +public class Example2 +{ + + public static void main(String[] args) + { + + } + +} diff --git a/test/Java/java_version_image/com/sub/foo/Example3.java b/test/Java/java_version_image/com/sub/foo/Example3.java new file mode 100644 index 0000000..092f0cd --- /dev/null +++ b/test/Java/java_version_image/com/sub/foo/Example3.java @@ -0,0 +1,11 @@ +package com.sub.foo; + +public class Example3 +{ + + public static void main(String[] args) + { + + } + +} |
