]> git.deb.at Git - deb/packages.git/commitdiff
Unbuffered output, for tail -f'ing cron.log
authorJeroen van Wolffelaar <jeroen@wolffelaar.nl>
Mon, 20 Feb 2006 14:32:16 +0000 (14:32 +0000)
committerJeroen van Wolffelaar <jeroen@wolffelaar.nl>
Mon, 20 Feb 2006 14:32:16 +0000 (14:32 +0000)
bin/parse-contents
bin/parse-packages
bin/parse-sources

index 541cba24beff985572e0b6f9a25198ebc0a81bd0..12b7ed824a40dbb933d0bc7b7a10e675153b9081 100755 (executable)
@@ -22,6 +22,8 @@
 use strict;
 use lib './lib';
 
 use strict;
 use lib './lib';
 
+$| = 1;
+
 # Important, we want sorting and such to happen like in the C locale: binary,
 # without any fancy collation. FIXME: is this actually adequate?
 $ENV{"LC_ALL"} = 'C';
 # Important, we want sorting and such to happen like in the C locale: binary,
 # without any fancy collation. FIXME: is this actually adequate?
 $ENV{"LC_ALL"} = 'C';
index e6a30829cd5ad30bb5f853d4ff3c8e328d624aec..399a62ca060656a82314f4f80000a7462899b938 100755 (executable)
@@ -22,6 +22,8 @@
 use strict;
 use lib './lib';
 
 use strict;
 use lib './lib';
 
+$| = 1;
+
 my $what = $ARGV[0] ? "non-free" : "*";
 # max. distinct results for a given package postfix
 my $MAX_PACKAGE_POSTFIXES = 100;
 my $what = $ARGV[0] ? "non-free" : "*";
 # max. distinct results for a given package postfix
 my $MAX_PACKAGE_POSTFIXES = 100;
index 89f071d42d389bf77c4f05d997ddce019b0060ca..6456c0e1929844751914d2be581701b4759ff4da 100755 (executable)
@@ -22,6 +22,8 @@
 use strict;
 use lib './lib';
 
 use strict;
 use lib './lib';
 
+$| = 1;
+
 my $what = $ARGV[0] ? "non-free" : "*";
 # max. distinct results for a given package postfix
 my $MAX_SOURCE_POSTFIXES = 100;
 my $what = $ARGV[0] ? "non-free" : "*";
 # max. distinct results for a given package postfix
 my $MAX_SOURCE_POSTFIXES = 100;