[svk-commit] r2510 - branches/2.0-releng/pkg

nobody at bestpractical.com nobody at bestpractical.com
Fri Jul 20 17:34:43 EDT 2007


Author: clkao
Date: Fri Jul 20 17:34:43 2007
New Revision: 2510

Modified:
   branches/2.0-releng/pkg/buildsvk.pl

Log:
Merge from trunk:
 r9539 at ubuntu (orig r2508):  clsung | 2007-07-18 16:45:46 +0100
 - on Win32, suffering from parameter list too long problem.
   - so use -A to read from files (test scripts)


Modified: branches/2.0-releng/pkg/buildsvk.pl
==============================================================================
--- branches/2.0-releng/pkg/buildsvk.pl	(original)
+++ branches/2.0-releng/pkg/buildsvk.pl	Fri Jul 20 17:34:43 2007
@@ -318,6 +318,9 @@
     my $self = shift;
     my $toplevel = shift;
     my @paroptions;
+    open my $tmpfh, '>test_files.txt' or die $!;
+    print $tmpfh map { "$toplevel/$_;site/$_\n" } $self->test_files($toplevel);
+    close $tmpfh;
     open my $fh, 'win32/paroptions.txt' or die $!;
     while (<$fh>) { next if m/^#/; chomp; push @paroptions, split(/ /,$_) };
     push @paroptions,
@@ -342,7 +345,8 @@
          -a => "$toplevel/CHANGES;CHANGES",
          -a => "$toplevel/ARTISTIC;ARTISTIC",
          -a => "$toplevel/COPYING;COPYING",
-         map { -a => "$toplevel/$_;site/$_" } $self->test_files($toplevel);
+	 -A => "test_files.txt";
+#         map { -a => "$toplevel/$_;site/$_" } $self->test_files($toplevel);
 
 
 


More information about the svk-commit mailing list