From b015a80073b9ac07716b37511d62944e00127010 Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Fri, 30 Dec 2011 15:39:36 -0800 Subject: [PATCH] align test.py with waf-1.6.10 changes --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 7fee5e8fb..ec4ca4847 100755 --- a/test.py +++ b/test.py @@ -500,7 +500,7 @@ def sigint_hook(signal, frame): # and use that result. # def read_waf_config(): - for line in open(".lock-wafbuild", "rt"): + for line in open(".lock-waf_" + sys.platform + "_build", "rt"): if line.startswith("out_dir ="): key, val = line.split('=') out_dir = eval(val.strip())