Skip to content
Snippets Groups Projects
Commit d72baf43 authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

reworking scons file for pedi insanity

parent 1cb3347a
No related branches found
No related tags found
No related merge requests found
Pipeline #4288 passed
......@@ -62,10 +62,11 @@ pedi = Command( target = "./zipr-umb-testoutput-install",
source = xforms,
action = os.environ['PEDI_HOME']+"/pedi -m manifest.txt " )
ret=[]+xforms
if Dir('.').abspath == Dir('#.').abspath:
Default( pedi )
else:
Default(xforms)
ret=ret+pedi
if env.GetOption('clean') and os.path.isfile("manifest.txt.config"):
with open("manifest.txt.config") as myfile:
......@@ -77,3 +78,7 @@ if env.GetOption('clean') and os.path.isfile("manifest.txt.config"):
os.system( "pwd; $PEDI_HOME/pedi -c -m manifest.txt " )
shutil.rmtree(os.environ['PS_INSTALL'])
Default(ret)
Return('ret')
......@@ -35,5 +35,8 @@ else:
env.Append(SHLINKFLAGS=" -O ")
Export('env')
SConscript("SConscript")
ret=SConscript("SConscript")
Default(ret)
Return('ret')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment