From fcd2a8e03040589f3048e91737d4b2863c8521fd Mon Sep 17 00:00:00 2001 From: Jeroen van Wolffelaar Date: Mon, 20 Feb 2006 14:32:16 +0000 Subject: [PATCH] Unbuffered output, for tail -f'ing cron.log --- bin/parse-contents | 2 ++ bin/parse-packages | 2 ++ bin/parse-sources | 2 ++ 3 files changed, 6 insertions(+) diff --git a/bin/parse-contents b/bin/parse-contents index 541cba2..12b7ed8 100755 --- a/bin/parse-contents +++ b/bin/parse-contents @@ -22,6 +22,8 @@ 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'; diff --git a/bin/parse-packages b/bin/parse-packages index e6a3082..399a62c 100755 --- a/bin/parse-packages +++ b/bin/parse-packages @@ -22,6 +22,8 @@ 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; diff --git a/bin/parse-sources b/bin/parse-sources index 89f071d..6456c0e 100755 --- a/bin/parse-sources +++ b/bin/parse-sources @@ -22,6 +22,8 @@ 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; -- 2.39.2