Skip to content

Commit 45223e5

Browse files
author
Mike Dirolf
committed
call wants args to be in an array
1 parent bc3f63e commit 45223e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1656,7 +1656,7 @@ def build_and_test_client(env, target, source):
16561656
from subprocess import call
16571657

16581658
if GetOption("extrapath") is not None:
1659-
call("scons --extrapath=%s" % GetOption("extrapath"), cwd=installDir)
1659+
call(["scons", "--extrapath=" + GetOption("extrapath")], cwd=installDir)
16601660
else:
16611661
call("scons", cwd=installDir)
16621662
return bool(call(["python", "buildscripts/smoke.py",

0 commit comments

Comments
 (0)