You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by ra...@apache.org on 2011/01/09 16:07:13 UTC

svn commit: r1056962 - /lenya/branches/BRANCH_2_0_X/configure.bat

Author: rainer
Date: Sun Jan  9 15:07:13 2011
New Revision: 1056962

URL: http://svn.apache.org/viewvc?rev=1056962&view=rev
Log:
Windows (configure.bat): add double quotes around command line arguments that
                         may contain path names with whitespace characters.

Modified:
    lenya/branches/BRANCH_2_0_X/configure.bat

Modified: lenya/branches/BRANCH_2_0_X/configure.bat
URL: http://svn.apache.org/viewvc/lenya/branches/BRANCH_2_0_X/configure.bat?rev=1056962&r1=1056961&r2=1056962&view=diff
==============================================================================
--- lenya/branches/BRANCH_2_0_X/configure.bat (original)
+++ lenya/branches/BRANCH_2_0_X/configure.bat Sun Jan  9 15:07:13 2011
@@ -33,11 +33,11 @@ if "%1" == "gui" goto javaGui
 goto javaCmd
 
 :javaGui
-java -classpath %CP% org.apache.lenya.config.impl.ConfigureGUI %LENYA_HOME%
+java -classpath "%CP%" org.apache.lenya.config.impl.ConfigureGUI "%LENYA_HOME%"
 goto end
 
 :javaCmd
-java -classpath %CP% org.apache.lenya.config.impl.ConfigureCommandLine %LENYA_HOME%
+java -classpath "%CP%" org.apache.lenya.config.impl.ConfigureCommandLine "%LENYA_HOME%"
 goto end
 
 :help



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@lenya.apache.org
For additional commands, e-mail: commits-help@lenya.apache.org