diff --git a/SConstruct b/SConstruct
index 30cf1d663dc724ffcb1e81fd4b24c0e672aaa6c5..c0b6444c39d1ddef8478553db69622e8e53e8731 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]