gwynne Mon Nov 10 01:56:27 2008 UTC Modified files: /SVNROOT run-conversion.php Log: ditch old propsets before doing it again http://cvs.php.net/viewvc.cgi/SVNROOT/run-conversion.php?r1=1.32&r2=1.33&diff_format=u Index: SVNROOT/run-conversion.php diff -u SVNROOT/run-conversion.php:1.32 SVNROOT/run-conversion.php:1.33 --- SVNROOT/run-conversion.php:1.32 Mon Nov 10 01:53:53 2008 +++ SVNROOT/run-conversion.php Mon Nov 10 01:56:27 2008 @@ -7,7 +7,7 @@ // ----------------------------------------------------------------------------------------------------------------------------- // Constants -$version = substr('$Revision: 1.32 $', strlen('$Revision: '), -2); +$version = substr('$Revision: 1.33 $', strlen('$Revision: '), -2); $passes = array( 'processcvs', // Process CVS modules @@ -567,6 +567,9 @@ foreach ($links as $link) { $info = lstat($GLOBALS['options']['cvsroot'] . DIRECTORY_SEPARATOR . 'php-src' . DIRECTORY_SEPARATOR . 'ext' . DIRECTORY_SEPARATOR . $link); + run_command('exec svn propdel svn:externals ' . escapeshellarg('tags' . DIRECTORY_SEPARATOR . $tag . DIRECTORY_SEPARATOR . 'ext')); + run_command('exec svn propdel svn:externals ' . escapeshellarg('branches' . DIRECTORY_SEPARATOR . $tag . DIRECTORY_SEPARATOR . 'ext')); + run_command('exec svn propdel svn:externals ' . escapeshellarg('trunk' . DIRECTORY_SEPARATOR . 'ext')); $createDate = $info['ctime']; foreach ($tagList as $tag => $tagDate) { if ($createDate <= $tagDate) {
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php