cvs: pear-core / package-PEAR.xml package2.xml /PEAR Builder.php
[email protected] ("Greg Beaver") Mon, 12 May 2008 23:43:21 -0000
| Newsgroups | php.pear.cvs,php.pear.core |
|---|---|
| Message-ID | <cvscellog1210635801@cvsserver> |
cellog Mon May 12 23:43:21 2008 UTC
Modified files:
/pear-core package2.xml package-PEAR.xml
/pear-core/PEAR Builder.php
Log:
* Fix Bug #13434 Breaks on HPUX - "find () -ls" doesn't work
http://cvs.php.net/viewvc.cgi/pear-core/package2.xml?r1=1.425&r2=1.426&diff_format=u
Index: pear-core/package2.xml
diff -u pear-core/package2.xml:1.425 pear-core/package2.xml:1.426
--- pear-core/package2.xml:1.425 Fri Apr 11 01:36:34 2008
+++ pear-core/package2.xml Mon May 12 23:43:21 2008
@@ -103,6 +103,7 @@
* Fix Bug #13059 Invalid release type causes Undefined Property notice [gwynne, dufuz]
* Fix Bug #13323 Deprecated errors in many places [hubbitus]
* Fix Bug #13315 Upgrading of package fails if more than one file of role=cfg has changed [timj]
+ * Fix Bug #13434 Breaks on HPUX - "find () -ls" doesn't work
* Fix Bug #13484 pear package brings up warnings [dufuz]
* Fix Bug #13485 pear package-validate brings up ASCII issues [dufuz]
* Fix Bug #13525 pear package-validate is not showing warnings even if there are [dufuz]
http://cvs.php.net/viewvc.cgi/pear-core/package-PEAR.xml?r1=1.525&r2=1.526&diff_format=u
Index: pear-core/package-PEAR.xml
diff -u pear-core/package-PEAR.xml:1.525 pear-core/package-PEAR.xml:1.526
--- pear-core/package-PEAR.xml:1.525 Fri Apr 11 01:36:34 2008
+++ pear-core/package-PEAR.xml Mon May 12 23:43:21 2008
@@ -98,6 +98,7 @@
* Fix Bug #13059 Invalid release type causes Undefined Property notice [gwynne, dufuz]
* Fix Bug #13323 Deprecated errors in many places [hubbitus]
* Fix Bug #13315 Upgrading of package fails if more than one file of role=cfg has changed [timj]
+ * Fix Bug #13434 Breaks on HPUX - "find () -ls" doesn't work
* Fix Bug #13484 pear package brings up warnings [dufuz]
* Fix Bug #13485 pear package-validate brings up ASCII issues [dufuz]
* Fix Bug #13525 pear package-validate is not showing warnings even if there are [dufuz]
http://cvs.php.net/viewvc.cgi/pear-core/PEAR/Builder.php?r1=1.33&r2=1.34&diff_format=u
Index: pear-core/PEAR/Builder.php
diff -u pear-core/PEAR/Builder.php:1.33 pear-core/PEAR/Builder.php:1.34
--- pear-core/PEAR/Builder.php:1.33 Thu Jan 17 05:48:37 2008
+++ pear-core/PEAR/Builder.php Mon May 12 23:43:21 2008
@@ -16,7 +16,7 @@
* @author Greg Beaver <[email protected]>
* @copyright 1997-2008 The PHP Group
* @license http://www.php.net/license/3_0.txt PHP License 3.0
- * @version CVS: $Id: Builder.php,v 1.33 2008/01/17 05:48:37 cellog Exp $
+ * @version CVS: $Id: Builder.php,v 1.34 2008/05/12 23:43:21 cellog Exp $
* @link http://pear.php.net/package/PEAR
* @since File available since Release 0.1
*
@@ -353,7 +353,7 @@
$configure_command,
$make_command,
"$make_command INSTALL_ROOT=\"$inst_dir\" install",
- "find \"$inst_dir\" -ls"
+ "find \"$inst_dir\" | xargs ls -dils"
);
if (!file_exists($build_dir) || !is_dir($build_dir) || !chdir($build_dir)) {
return $this->raiseError("could not chdir to $build_dir");