From bc5e995078a5a5e9d933e38a69a102617e8db01b Mon Sep 17 00:00:00 2001 From: Sitaram Chamarty Date: Tue, 22 Feb 2011 13:25:56 +0530 Subject: [PATCH] reach out and touch someone This shaves 3 seconds off of KDE's config compile time :-) Yes, I know wrap_print has that extra print statement, but otherwise it was lying around not earning its keep so I gave it a little side job :-) --- src/gitolite.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gitolite.pm b/src/gitolite.pm index acc6d67..7a32b89 100644 --- a/src/gitolite.pm +++ b/src/gitolite.pm @@ -408,7 +408,7 @@ sub setup_daemon_access my $repo = shift; if (can_read($repo, 'daemon')) { - system("touch $export_ok"); + wrap_print($export_ok, ""); } else { unlink($export_ok); }