Files
haikuports/dev-util/buildbot_slave/patches/buildbot_slave-0.8.12.patchset
2016-04-14 21:18:04 +00:00

23 lines
885 B
Plaintext

From 0e18912e5fbd96708f618b15bb3fa755a025aa88 Mon Sep 17 00:00:00 2001
From: Jessica Hamilton <jessica.l.hamilton@gmail.com>
Date: Fri, 20 Jun 2014 04:58:54 +0000
Subject: logwatcher.py: fix path to tail on Haiku
diff --git a/buildslave/scripts/logwatcher.py b/buildslave/scripts/logwatcher.py
index 32bec78..6bfd046 100644
--- a/buildslave/scripts/logwatcher.py
+++ b/buildslave/scripts/logwatcher.py
@@ -81,7 +81,7 @@ class LogWatcher(LineOnlyReceiver):
if platform.system().lower() == 'sunos' and os.path.exists('/usr/xpg4/bin/tail'):
tailBin = "/usr/xpg4/bin/tail"
else:
- tailBin = "/usr/bin/tail"
+ tailBin = "/bin/tail"
self.p = reactor.spawnProcess(self.pp, tailBin,
("tail", "-f", "-n", "0", self.logfile),
env=os.environ,
--
2.2.2