pajoye          Sat Dec 13 11:46:23 2008 UTC

  Modified files:              (Branch: PHP_5_3)
    /php-src/win32/build        mkdist.php 
  Log:
  - do not add .cvsignore to the tests package
  
http://cvs.php.net/viewvc.cgi/php-src/win32/build/mkdist.php?r1=1.13.4.1.2.6&r2=1.13.4.1.2.7&diff_format=u
Index: php-src/win32/build/mkdist.php
diff -u php-src/win32/build/mkdist.php:1.13.4.1.2.6 
php-src/win32/build/mkdist.php:1.13.4.1.2.7
--- php-src/win32/build/mkdist.php:1.13.4.1.2.6 Sun Oct 26 00:14:23 2008
+++ php-src/win32/build/mkdist.php      Sat Dec 13 11:46:23 2008
@@ -1,4 +1,4 @@
-<?php # $Id: mkdist.php,v 1.13.4.1.2.6 2008/10/26 00:14:23 pajoye Exp $
+<?php # $Id: mkdist.php,v 1.13.4.1.2.7 2008/12/13 11:46:23 pajoye Exp $
 /* piece together a windows binary distro */
 
 $build_dir = $argv[1];
@@ -322,7 +322,6 @@
        }
        copy($dll, "$pecl_dir/" . basename($dll));
 }
-
 function copy_dir($source, $dest)
 {
        if (!is_dir($dest)) {
@@ -333,7 +332,7 @@
 
        $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 @@
 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;



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to