1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

- Fix build

PR:		161591
Submitted by:	Guido Falsi <mad@madpilot.net>
This commit is contained in:
Martin Wilke 2011-10-23 16:06:54 +00:00
parent fd4137f8e4
commit cd30d97157
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=284190
2 changed files with 18 additions and 4 deletions

View File

@ -63,10 +63,6 @@ OPTIONS= AIRPLAY "Support output via Airport Express" off \
.include <bsd.port.pre.mk>
.if defined(PACKAGE_BUILDING)
BROKEN= fails to build on pointyhat: runaway process
.endif
.if defined(XMMS2_SLAVE)
EXCLUDE+= --without-xmms2d

View File

@ -0,0 +1,18 @@
--- wafadmin/Task.py.orig 2010-02-19 18:43:54.000000000 +0100
+++ wafadmin/Task.py 2011-10-14 14:36:57.000663231 +0200
@@ -47,6 +47,7 @@
import Build, Runner, Utils, Node, Logs, Options
from Logs import debug, warn, error
from Constants import *
+import time
algotype = NORMAL
#algotype = JOBCONTROL
@@ -406,6 +407,7 @@
def call_run(self):
if self.can_retrieve_cache():
return 0
+ time.sleep(0.02)
return self.run()
def run(self):