From: Vincent Blavet Date: Wed, 20 Feb 2002 22:39:16 +0000 (+0000) Subject: Config variables must be set between "" while using pear.bat windows script X-Git-Tag: php-4.2.0RC1~309 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=04db776e71898cb8700df944190797ccae7ff262;p=php Config variables must be set between "" while using pear.bat windows script --- diff --git a/pear/scripts/pearwin.php b/pear/scripts/pearwin.php index a8217be5df..d3383918a4 100644 --- a/pear/scripts/pearwin.php +++ b/pear/scripts/pearwin.php @@ -41,6 +41,7 @@ if (PEAR::isError($options)) { usage($options); } + $php_sysconfdir = getenv('PHP_SYSCONFDIR'); if (!empty($php_sysconfdir)) { $pear_default_config = $php_sysconfdir.DIRECTORY_SEPARATOR.'pearsys.ini'; @@ -52,6 +53,9 @@ if (!empty($php_sysconfdir)) { $opts = $options[0]; +//echo "ini_get : ".ini_get("pear_install_dir")."\n"; +//echo "get_cfg_var : ".get_cfg_var("pear_install_dir")."\n"; + foreach ($opts as $opt) { switch ($opt[0]) { case 'c': @@ -203,16 +207,16 @@ function usage($obj = null) fputs($stderr, "Usage: pear [options] command [command-options] \n". "Options:\n". - " -v increase verbosity level (default 1)\n". - " -q be quiet, decrease verbosity level\n". - " -c file find user configuration in `file'\n". - " -C file find system configuration in `file'\n". - " -d foo=bar set user config variable `foo' to `bar'\n". - " -D foo=bar set system config variable `foo' to `bar'\n". - " -s store user configuration\n". - " -S store system configuration\n". - " -u foo unset `foo' in the user configuration\n". - " -h, -? display help/usage (this message)\n". + " -v increase verbosity level (default 1)\n". + " -q be quiet, decrease verbosity level\n". + " -c file find user configuration in `file'\n". + " -C file find system configuration in `file'\n". + " -d \"foo=bar\" set user config variable `foo' to `bar'\n". + " -D \"foo=bar\" set system config variable `foo' to `bar'\n". + " -s store user configuration\n". + " -S store system configuration\n". + " -u foo unset `foo' in the user configuration\n". + " -h, -? display help/usage (this message)\n". "Commands:\n". " help [command]\n". " install [-r] \n".