From: Pierre Joye Date: Sat, 13 Dec 2008 11:59:34 +0000 (+0000) Subject: - MFB: do not add .cvsignore to the tests package X-Git-Tag: php-5.4.0alpha1~191^2~4815 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=de3be2b9c38f176beb98fdb38e502e3d3e042b14;p=php - MFB: do not add .cvsignore to the tests package --- diff --git a/win32/build/mkdist.php b/win32/build/mkdist.php index e66be3c396..44a7308d79 100644 --- a/win32/build/mkdist.php +++ b/win32/build/mkdist.php @@ -333,7 +333,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;