diff options
author | Greg Beaver <cellog@php.net> | 2003-08-29 21:21:27 +0000 |
---|---|---|
committer | Greg Beaver <cellog@php.net> | 2003-08-29 21:21:27 +0000 |
commit | f3fd882aa42694f11bf74198c1635164c6ec78fd (patch) | |
tree | ae24c7ce188f509e42887697c6ed1d569d990084 | |
parent | eb8d89c363c6262434b43d02cbfcfb207810c882 (diff) | |
download | php-git-f3fd882aa42694f11bf74198c1635164c6ec78fd.tar.gz |
One more fix for spaces in paths
-rwxr-xr-x | pear/scripts/pear.bat | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pear/scripts/pear.bat b/pear/scripts/pear.bat index 2afcb0b50f..362fc34133 100755 --- a/pear/scripts/pear.bat +++ b/pear/scripts/pear.bat @@ -16,16 +16,16 @@ REM ---------------------------------------------------------------------- REM Authors: Alexander Merz (alexmerz@php.net) REM ---------------------------------------------------------------------- REM -REM $Id: pear.bat,v 1.15 2003/06/10 20:03:44 imajes Exp $ +REM $Id: pear.bat,v 1.16 2003/08/29 05:40:50 cellog Exp $ REM change this lines to match the paths of your system REM ------------------- @ECHO OFF :: Check PEAR global ENV, set them if they do not exist -IF "%PHP_PEAR_INSTALL_DIR%"=="" SET PHP_PEAR_INSTALL_DIR="@include_path@" -IF "%PHP_PEAR_BIN_DIR%"=="" SET PHP_PEAR_BIN_DIR="@bin_dir@" -IF "%PHP_PEAR_PHP_BIN%"=="" SET PHP_PEAR_PHP_BIN="@php_bin@" +IF "%PHP_PEAR_INSTALL_DIR%"=="" SET "PHP_PEAR_INSTALL_DIR=@include_path@" +IF "%PHP_PEAR_BIN_DIR%"=="" SET "PHP_PEAR_BIN_DIR=@bin_dir@" +IF "%PHP_PEAR_PHP_BIN%"=="" SET "PHP_PEAR_PHP_BIN=@php_bin@" :: Check Folders and files IF NOT EXIST "%PHP_PEAR_INSTALL_DIR%" GOTO PEAR_INSTALL_ERROR |