From 5aaac79a6f15386ab4fd0d4298c476dff985ef39 Mon Sep 17 00:00:00 2001
From: Jason Hiser <jdhiser@gmail.com>
Date: Thu, 22 Aug 2019 14:33:42 -0400
Subject: [PATCH] Trying to get race condition fixed

---
 SConstruct | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/SConstruct b/SConstruct
index 30cf1d6..c0b6444 100644
--- a/SConstruct
+++ b/SConstruct
@@ -35,8 +35,9 @@ zafl=SConscript("zafl/SConstruct"   );
 libyaml=SConscript("third-party/SConscript.yamlcpp");
 inst=env.Install("lib/", libyaml)
 
-Depends([cli],libyaml)
-Depends([turbod,cli],[rpc])
+Depends(cli,libyaml)
+Depends(turbod, rpc)
+Depends(cli,rpc)
 
 ret=[rpc,turbod,cli,prepd,zafl,libyaml, inst]
 
-- 
GitLab