svn: /pear2/Pyrus_Developer/trunk/src/Pyrus/Developer/PackageFile/ Commands.php
[email protected] (Brett Bieber)
| Newsgroups | php.pear.cvs,php.pear.core |
|---|---|
| Message-ID | <[email protected]> |
saltybeagle Mon, 12 Jul 2010 13:06:39 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=301186
Log:
Correct path to PEAR2 Exception, Autoload, and MultiErrors.
Changed paths:
U pear2/Pyrus_Developer/trunk/src/Pyrus/Developer/PackageFile/Commands.php
Modified: pear2/Pyrus_Developer/trunk/src/Pyrus/Developer/PackageFile/Commands.php
===================================================================
--- pear2/Pyrus_Developer/trunk/src/Pyrus/Developer/PackageFile/Commands.php 2010-07-12 12:59:28 UTC (rev 301185)
+++ pear2/Pyrus_Developer/trunk/src/Pyrus/Developer/PackageFile/Commands.php 2010-07-12 13:06:39 UTC (rev 301186)
@@ -220,14 +220,14 @@
// running from svn, assume we're in an all checkout
$svnall = realpath($sourcepath . '/../..');
if (!file_exists($svnall . '/Exception')) {
- throw new \PEAR2\Pyrus\Developer\Creator\Exception('Cannot locate pear2/Exception and friends, bailing');
+ throw new \PEAR2\Pyrus\Developer\Creator\Exception('Cannot locate PEAR2/Exception and friends, bailing');
}
$exceptionpath = $svnall . '/Exception/src';
$autoloadpath = $svnall . '/Autoload/src';
$multierrorspath = $svnall . '/MultiErrors/src';
} else {
$exceptionpath = $autoloadpath = $multierrorspath = dirname($sourcepath) .
- '/pear2';
+ '/PEAR2';
}
$extras = array();
$stub = false;