From 24d2954366086ad6cb2c94176d6d359b29137f5d Mon Sep 17 00:00:00 2001 From: Jason Hiser <jdh8d@virginia.edu> Date: Thu, 20 Sep 2018 05:26:54 -0400 Subject: [PATCH] added pedi support --- SConscript | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/SConscript b/SConscript index 713182336..5563464dc 100644 --- a/SConscript +++ b/SConscript @@ -59,4 +59,13 @@ lib=myenv.SharedLibrary("push64_relocs", Split(files)) install=myenv.Install("$ZIPR_INSTALL/plugins/", lib) Default(install) +pedi = Command( target = "./testoutput", + source = "./SConscript", + action = "cd "+os.environ['ZIPR_INSTALL']+" ; " +os.environ['PEDI_HOME']+"/pedi -m manifest.txt ; cd -" ) + +Depends (pedi, install) +Default( pedi ) + + + -- GitLab