pajoye Mon, 13 Jul 2009 16:02:34 +0000 ViewVC URL: http://svn.php.net/viewvc?view=revision&revision=284012
Changed paths: U php/php-src/branches/PHP_5_3/win32/build/cvsclean.js U php/php-src/branches/PHP_5_3/win32/build/mkdist.php Log: - cvs to svn changes Modified: php/php-src/branches/PHP_5_3/win32/build/cvsclean.js =================================================================== (Binary files differ) Modified: php/php-src/branches/PHP_5_3/win32/build/mkdist.php =================================================================== --- php/php-src/branches/PHP_5_3/win32/build/mkdist.php 2009-07-13 16:01:40 UTC (rev 284011) +++ php/php-src/branches/PHP_5_3/win32/build/mkdist.php 2009-07-13 16:02:34 UTC (rev 284012) @@ -251,7 +251,7 @@ } /* include a snapshot identifier */ -$branch = "HEAD"; // TODO - determine this from CVS/Entries +$branch = "HEAD"; // TODO - determine this from SVN branche name $fp = fopen("$dist_dir/snapshot.txt", "w"); $now = date("r"); $version = phpversion(); @@ -342,7 +342,7 @@ $d = opendir($source); while (($f = readdir($d)) !== false) { - if ($f == '.' || $f == '..' || $f == 'CVS' || $f == '.cvsignore') { + if ($f == '.' || $f == '..' || $f == '.svn') { continue; } $fs = $source . '/' . $f; @@ -380,7 +380,7 @@ while (FALSE !== ($file = readdir($directory_list))) { $full_path = $directory . '/' . $file; - if($file != '.' && $file != '..' && $file != 'CVS' && is_dir($full_path)) { + if($file != '.' && $file != '..' && $file != '.svn' && is_dir($full_path)) { if ($file == 'tests') { if (!is_dir($dest . '/' . $full_path)) { mkdir($dest . '/' . $full_path , 0775, true); -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php