gwynne          Sat Nov  8 22:36:09 2008 UTC

  Modified files:              
    /SVNROOT    run-conversion.php 
  Log:
  we need the real CVSROOT for this
  
http://cvs.php.net/viewvc.cgi/SVNROOT/run-conversion.php?r1=1.24&r2=1.25&diff_format=u
Index: SVNROOT/run-conversion.php
diff -u SVNROOT/run-conversion.php:1.24 SVNROOT/run-conversion.php:1.25
--- SVNROOT/run-conversion.php:1.24     Sat Nov  8 22:31:55 2008
+++ SVNROOT/run-conversion.php  Sat Nov  8 22:36:09 2008
@@ -1,12 +1,13 @@
 <?php
 
 // 
-----------------------------------------------------------------------------------------------------------------------------
-// Error level
+// Settings
 error_reporting(E_ALL | E_STRICT);
+date_default_timezone_set('UTC');
 
 // 
-----------------------------------------------------------------------------------------------------------------------------
 // Constants
-$version = substr('$Revision: 1.24 $', strlen('$Revision: '), -2);
+$version = substr('$Revision: 1.25 $', strlen('$Revision: '), -2);
 
 $passes = array(
     'processcvs',       // Process CVS modules
@@ -199,14 +200,17 @@
                                              ' > ' . 
escapeshellarg($GLOBALS['temp_path'] . DIRECTORY_SEPARATOR . 'cp-output');
                 run_command($command);
                 $command = 'exec cp -Rpv ' . 
escapeshellarg($GLOBALS['options']['cvsroot'] . DIRECTORY_SEPARATOR . 
'ZendEngine2') . ' ' .
-                                             
escapeshellarg($GLOBALS['temp_path'] . DIRECTORY_SEPARATOR . 'php-src/') .
+                                             
escapeshellarg($GLOBALS['temp_path'] . DIRECTORY_SEPARATOR . 'php-src') .
                                              ' >> ' . 
escapeshellarg($GLOBALS['temp_path'] . DIRECTORY_SEPARATOR . 'cp-output');
                 run_command($command);
                 $command = 'exec cp -Rpv ' . 
escapeshellarg($GLOBALS['options']['cvsroot'] . DIRECTORY_SEPARATOR . 'TSRM') . 
' ' .
-                                             
escapeshellarg($GLOBALS['temp_path'] . DIRECTORY_SEPARATOR . 'php-src/') .
+                                             
escapeshellarg($GLOBALS['temp_path'] . DIRECTORY_SEPARATOR . 'php-src') .
+                                             ' >> ' . 
escapeshellarg($GLOBALS['temp_path'] . DIRECTORY_SEPARATOR . 'cp-output');
+                run_command($command);
+                $command = 'exec cp -Rpv ' . 
escapeshellarg($GLOBALS['options']['cvsroot'] . DIRECTORY_SEPARATOR . 
'CVSROOT') . ' ' .
+                                             
escapeshellarg($GLOBALS['temp_path']) .
                                              ' >> ' . 
escapeshellarg($GLOBALS['temp_path'] . DIRECTORY_SEPARATOR . 'cp-output');
                 run_command($command);
-                run_command('exec cvs -d' . 
escapeshellarg($GLOBALS['temp_path']) . ' init');
                 $cvspath = $GLOBALS['temp_path'] . DIRECTORY_SEPARATOR . 
'php-src';
             }
             $this->optionsFileContents .= <<<EOEXTRA



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

Reply via email to