Skip to content
Snippets Groups Projects
Commit df00a8c2 authored by jdh8d's avatar jdh8d
Browse files

Fixed pedi issue where dependencies weren't calculated right

parent 6bbc96c9
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@ if 'do_cgc' in env and int(env['do_cgc']) == 1:
# build security transforms
irdbenv=env.Clone();
SConscript("src/SConscript", variant_dir='scons_build/zipr')
zipr=SConscript("src/SConscript", variant_dir='scons_build/zipr')
if sysname != "SunOS":
SConscript("test/SConscript")
......@@ -21,5 +21,7 @@ if sysname != "SunOS":
pedi = Command( target = "./testoutput",
source = "./SConscript",
action = "cd "+os.environ['ZIPR_INSTALL']+" ; " +os.environ['PEDI_HOME']+"/pedi -m manifest.txt ; cd -" )
Depends(pedi,zipr)
Default( pedi )
......@@ -73,4 +73,4 @@ ziprexe=myenv.Program("zipr.exe", Split(files))
install=myenv.Install("$ZIPR_INSTALL/bin/", ziprexe)
Default(install)
Return('install')
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