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/10 01:30:01 UTC

svn commit: r1057062 - /lenya/branches/BRANCH_2_0_X/configure.sh

Author: rainer
Date: Mon Jan 10 00:30:00 2011
New Revision: 1057062

URL: http://svn.apache.org/viewvc?rev=1057062&view=rev
Log:
Make configure.sh work in a working dir with spaces in its pathname.

Modified:
    lenya/branches/BRANCH_2_0_X/configure.sh

Modified: lenya/branches/BRANCH_2_0_X/configure.sh
URL: http://svn.apache.org/viewvc/lenya/branches/BRANCH_2_0_X/configure.sh?rev=1057062&r1=1057061&r2=1057062&view=diff
==============================================================================
--- lenya/branches/BRANCH_2_0_X/configure.sh (original)
+++ lenya/branches/BRANCH_2_0_X/configure.sh Mon Jan 10 00:30:00 2011
@@ -51,9 +51,9 @@ fi
 
 PWD=`pwd`
 if [ "$UI_TYPE" = "cmd" ];then
-  java org.apache.lenya.config.impl.ConfigureCommandLine $PWD
+  java org.apache.lenya.config.impl.ConfigureCommandLine "$PWD"
 elif [ "$UI_TYPE" = "gui" ]; then
-  java org.apache.lenya.config.impl.ConfigureGUI $PWD
+  java org.apache.lenya.config.impl.ConfigureGUI "$PWD"
 else
   echo "ERROR: No such User Interface: $UI_TYPE"
   exit 1



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