about summary refs log tree commit diff
path: root/scripts/generate-patches.pl.in
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2006-10-12T20·13+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2006-10-12T20·13+0000
commit2a535689fe801441ef8e4a5c6659925528cce106 (patch)
tree0e27528e2328c9794864a57f8f8da62691c301d5 /scripts/generate-patches.pl.in
parent7d4567f2cc16959e827f542e6de76a28ff11789e (diff)
* Reduce the maximum archive size for patch generation to 100 MB to
  prevent trashing on nix.cs.uu.nl.

Diffstat (limited to 'scripts/generate-patches.pl.in')
-rwxr-xr-xscripts/generate-patches.pl.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/generate-patches.pl.in b/scripts/generate-patches.pl.in
index 3a35b8518cbd..4a0233f0f931 100755
--- a/scripts/generate-patches.pl.in
+++ b/scripts/generate-patches.pl.in
@@ -277,7 +277,7 @@ foreach my $p (keys %dstOutPaths) {
         my $srcNarBz2 = getNarBz2 \%srcNarFiles, $closest;
         my $dstNarBz2 = getNarBz2 \%dstNarFiles, $p;
 
-        my $maxNarSize = 150 * 1024 * 1024;
+        my $maxNarSize = 100 * 1024 * 1024;
 
         system("@bunzip2@ < $srcNarBz2 > $tmpDir/A") == 0
             or die "cannot unpack $srcNarBz2";