}
copy($dll, "$pecl_dir/" . basename($dll));
}
-
function copy_dir($source, $dest)
{
if (!is_dir($dest)) {
$d = opendir($source);
while (($f = readdir($d)) !== false) {
- if ($f == '.' || $f == '..' || $f == 'CVS') {
+ if ($f == '.' || $f == '..' || $f == 'CVS' || $f == '.cvsignore') {
continue;
}
$fs = $source . '/' . $f;
foreach ($dirs as $dir) {
copy_test_dir($dir, $test_dir);
}
-
/* change this next line to true to use good-old
* hand-assembled go-pear-bundle from the snapshot template */
$use_pear_template = true;