pajoye Mon, 13 Jul 2009 16:04:04 +0000
ViewVC URL: http://svn.php.net/viewvc?view=revision&revision=284013
Changed paths:
U php/php-src/trunk/win32/build/cvsclean.js
U php/php-src/trunk/win32/build/mkdist.php
Log:
- cvs to svn changes
Modified: php/php-src/trunk/win32/build/cvsclean.js
===================================================================
(Binary files differ)
Modified: php/php-src/trunk/win32/build/mkdist.php
===================================================================
--- php/php-src/trunk/win32/build/mkdist.php 2009-07-13 16:02:34 UTC (rev
284012)
+++ php/php-src/trunk/win32/build/mkdist.php 2009-07-13 16:04:04 UTC (rev
284013)
@@ -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();
@@ -343,7 +343,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;
@@ -383,7 +383,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