Skip to content
Snippets Groups Projects
Commit 5b766850 authored by Edward Brash's avatar Edward Brash Committed by Stephen A. Wood
Browse files

Updates to hcana SConstruct to pass command line arguments to podd scons call.

parent ac9dd08c
No related branches found
No related tags found
No related merge requests found
......@@ -234,8 +234,15 @@ if baseenv.GetOption('clean'):
else:
subprocess.call(['echo', '!!!!!! Building Podd !!!!!! '])
podd_command_scons = "cd %s; scons" % baseenv.subst('$HA_DIR')
if baseenv.GetOption('num_jobs'):
podd_command_scons += " -j%s" % (GetOption('num_jobs'))
if baseenv.GetOption('silent'):
podd_command_scons += " -s"
for key,value in ARGLIST:
podd_command_scons += " %s=%s" % (key,value)
print "podd_command_scons = %s" % podd_command_scons
os.system(podd_command_scons)
directorylist = ['./','src']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment