Index: editor/tools/compile_analyzer.py |
diff --git a/editor/tools/compile_analyzer.py b/editor/tools/compile_analyzer.py |
index 7e7e8cb9c32b53df91d167142c637e825e42e9d6..3ffed9003ce535c9976547e9a58ad3451120ba32 100644 |
--- a/editor/tools/compile_analyzer.py |
+++ b/editor/tools/compile_analyzer.py |
@@ -93,6 +93,7 @@ def CreateManifestFile(options): |
def GetJavacPath(): |
if 'JAVA_HOME' in os.environ: |
+ print 'JAVA_HOME in environment variables ' + join(os.environ['JAVA_HOME'], 'bin', 'javac' + GetExecutableExtension()) |
return join(os.environ['JAVA_HOME'], 'bin', 'javac' + GetExecutableExtension()) |
else: |
return "javac" |