diff options
author | Stig Bakken <ssb@php.net> | 2002-05-28 00:01:19 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 2002-05-28 00:01:19 +0000 |
commit | 245ca5aa7c0f1daec1a3b71166eb3c3f38933461 (patch) | |
tree | 94bf02b674cc4bb18b22feb6aebc28781c9fa972 | |
parent | 926dcdc854ac23a7c49366ea44e04b600ff00709 (diff) | |
download | php-git-245ca5aa7c0f1daec1a3b71166eb3c3f38933461.tar.gz |
* added data_dir and test_dir
-rw-r--r-- | pear/PEAR/Config.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pear/PEAR/Config.php b/pear/PEAR/Config.php index 6bdbd618a7..146ceca3e9 100644 --- a/pear/PEAR/Config.php +++ b/pear/PEAR/Config.php @@ -113,6 +113,16 @@ class PEAR_Config extends PEAR 'default' => PEAR_CONFIG_DEFAULT_DOCDIR, 'doc' => 'directory where documentation is installed', ), + 'data_dir' => array( + 'type' => 'directory', + 'default' => PEAR_CONFIG_DEFAULT_DATADIR, + 'doc' => 'directory where data files are installed', + ), + 'test_dir' => array( + 'type' => 'directory', + 'default' => PEAR_CONFIG_DEFAULT_TESTDIR, + 'doc' => 'directory where regression tests are installed', + ), 'bin_dir' => array( 'type' => 'directory', 'default' => PEAR_CONFIG_DEFAULT_BINDIR, |