diff options
| author | Pierre Joye <pajoye@php.net> | 2008-12-13 11:46:23 +0000 |
|---|---|---|
| committer | Pierre Joye <pajoye@php.net> | 2008-12-13 11:46:23 +0000 |
| commit | 33d110f8f8fb7e5d80d618b51e8f79f1b91b0c46 (patch) | |
| tree | 0866d3b76f081feb20a75c9d069d555db3831929 /win32 | |
| parent | 68ff190aaa627426ffa581f47ea6d27a0982b4ee (diff) | |
| download | php-git-33d110f8f8fb7e5d80d618b51e8f79f1b91b0c46.tar.gz | |
- do not add .cvsignore to the tests package
Diffstat (limited to 'win32')
| -rw-r--r-- | win32/build/mkdist.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/win32/build/mkdist.php b/win32/build/mkdist.php index 1d63db40e7..f93355987e 100644 --- a/win32/build/mkdist.php +++ b/win32/build/mkdist.php @@ -322,7 +322,6 @@ foreach ($pecl_dll_deps as $dll) { } copy($dll, "$pecl_dir/" . basename($dll)); } - function copy_dir($source, $dest) { if (!is_dir($dest)) { @@ -333,7 +332,7 @@ function copy_dir($source, $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; @@ -398,7 +397,6 @@ $dirs = array( 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; |
