diff options
author | Jeremias Maerki <jeremias@apache.org> | 2011-01-21 06:54:39 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2011-01-21 06:54:39 +0000 |
commit | 93e2a5192a5163ceac8f400ced467add3ae87fec (patch) | |
tree | 0652f2abe7ac7d444f558d09ea35206e3827854f | |
parent | 03f05c5dc588e40037ce77f742e39fe1eb45cb1e (diff) | |
download | xmlgraphics-fop-93e2a5192a5163ceac8f400ced467add3ae87fec.tar.gz xmlgraphics-fop-93e2a5192a5163ceac8f400ced467add3ae87fec.zip |
Fix for paths with spaces.
Submitted by: Carl Hoffman/Glenn Adams
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1061652 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | fop.cmd | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ SETLOCAL ENABLEDELAYEDEXPANSION rem %~dp0 is the expanded pathname of the current script under NT
set LOCAL_FOP_HOME=
-if "%OS%"=="Windows_NT" set LOCAL_FOP_HOME=%~dp0
+if "%OS%"=="Windows_NT" set LOCAL_FOP_HOME="%~dp0"
rem Code from Apache Ant project
rem Slurp the command line arguments. This loop allows for an unlimited number
|