diff options
author | Stig Bakken <ssb@php.net> | 2001-10-26 10:07:43 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 2001-10-26 10:07:43 +0000 |
commit | f197cf36301af5f09dd4d755b9961b718ef232d0 (patch) | |
tree | f01830f1f8566244d332e84e66a03087dc949673 /pear/scripts/pearwin.php | |
parent | 6586cf7216b77279c5aefc772c713d2b005ee28d (diff) | |
download | php-git-f197cf36301af5f09dd4d755b9961b718ef232d0.tar.gz |
* PEAR_Config class to maintain system and per-user configuration for
PEAR installations
* PEAR_Remote class to communicate with the backend server (xmlrpc)
* change pear script's option parsing to "-d foo=bar" style
* added -c/-C (user/system config file) and -s/-S (store user/system config)
options
Diffstat (limited to 'pear/scripts/pearwin.php')
-rw-r--r-- | pear/scripts/pearwin.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pear/scripts/pearwin.php b/pear/scripts/pearwin.php index 2d75b3766a..2e56d4f77f 100644 --- a/pear/scripts/pearwin.php +++ b/pear/scripts/pearwin.php @@ -38,19 +38,19 @@ foreach ($opts as $opt) { break; case 'e': if ($param{0} != getenv('DIRECTORY_SEPARATOR')) { - usage (new PEAR_Error("no absolute path (ej. /usr/lib/php)\n")); + usage (new PEAR_Error("no absolute path (eg. /usr/lib/php)\n")); } $ext_dir = $param; break; case 'p': if ($param{0} != getenv('DIRECTORY_SEPARATOR')) { - usage (new PEAR_Error("no absolute path (ej. /usr/lib/php)\n")); + usage (new PEAR_Error("no absolute path (eg. /usr/lib/php)\n")); } $script_dir = $param; break; case 'd': if ($param{0} != getenv('DIRECTORY_SEPARATOR')) { - usage (new PEAR_Error("no absolute path (ej. /usr/lib/php)\n")); + usage (new PEAR_Error("no absolute path (eg. /usr/lib/php)\n")); } $doc_dir = $param; break; |