From 9b51604c923cf97c0458a3594f3b965b4ce3eb1c Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Mon, 17 Oct 2011 18:15:40 +0200 Subject: [PATCH] assorted build script fixes --- build.xml | 19 ++++++++----------- compiler/cli/bin/kotlinc.bat | 2 +- 2 files changed, 9 insertions(+), 12 deletions(-) diff --git a/build.xml b/build.xml index 7cff6776109..c5a74ee9208 100644 --- a/build.xml +++ b/build.xml @@ -1,6 +1,7 @@ + @@ -43,21 +44,17 @@ + - - - - - - - - - - - + + + + + + diff --git a/compiler/cli/bin/kotlinc.bat b/compiler/cli/bin/kotlinc.bat index 20d2e1795d8..4fb6990f3b9 100644 --- a/compiler/cli/bin/kotlinc.bat +++ b/compiler/cli/bin/kotlinc.bat @@ -27,7 +27,7 @@ if "%_TOOL_CLASSPATH%"=="" ( for /d %%f in ("%_KOTLIN_HOME%\lib\*") do call :add_cpath "%%f" ) -"%_JAVACMD%" %_JAVA_OPTS% cp "%_TOOL_CLASSPATH%" org.jetbrains.jet.cli.KotlinCompiler %* +"%_JAVACMD%" %_JAVA_OPTS% -cp "%_TOOL_CLASSPATH%" org.jetbrains.jet.cli.KotlinCompiler %* goto end rem ##########################################################################