summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas V.V.Cox <cox@php.net>2003-08-05 14:31:15 +0000
committerTomas V.V.Cox <cox@php.net>2003-08-05 14:31:15 +0000
commitd3600ea63fb3d1b62bffbfedeec68cb620d42949 (patch)
tree6d9d60e6297e28a3df41aa41dcd5ed34b1b5bda7
parent38ad5ff8d77e07100da5e3ca68fc5c9cb6855972 (diff)
downloadphp-git-d3600ea63fb3d1b62bffbfedeec68cb620d42949.tar.gz
Better install report for C extensions
-rw-r--r--pear/PEAR/Installer.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/pear/PEAR/Installer.php b/pear/PEAR/Installer.php
index 9f95e25aa6..416fab9991 100644
--- a/pear/PEAR/Installer.php
+++ b/pear/PEAR/Installer.php
@@ -715,11 +715,12 @@ class PEAR_Installer extends PEAR_Common
$this->rollbackFileTransaction();
return $built;
}
+ $this->log(1, "\nBuild process completed successfully");
foreach ($built as $ext) {
$bn = basename($ext['file']);
- $this->log(2, "installing $bn");
$dest = $this->config->get('ext_dir') . DIRECTORY_SEPARATOR . $bn;
- $this->log(3, "+ cp $ext[file] ext_dir");
+ $this->log(1, "Installing '$bn' at ext_dir ($dest)");
+ $this->log(3, "+ cp $ext[file] ext_dir ($dest)");
$copyto = $this->_prependPath($dest, $this->installroot);
if (!@copy($ext['file'], $copyto)) {
$this->rollbackFileTransaction();