mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
Moved the py files to their appropriate directory
This commit is contained in:
parent
573211e09c
commit
d0316b5688
@ -159,7 +159,7 @@ elsif ( $build_type eq so )
|
|||||||
if ($build_s_source)
|
if ($build_s_source)
|
||||||
{
|
{
|
||||||
print "Building S_source.hh\n" ;
|
print "Building S_source.hh\n" ;
|
||||||
$make_s_source = "python3 $my_path../share/trick/makefiles/build_trickify_S_source_hh.py" ;
|
$make_s_source = "python3 $my_path../share/trick/pymods/trick/build_trickify_S_source_hh.py" ;
|
||||||
print(`$make_s_source`) ;
|
print(`$make_s_source`) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -167,7 +167,7 @@ if ($build_s_source)
|
|||||||
if ($build_trickify_src_list and $full_build)
|
if ($build_trickify_src_list and $full_build)
|
||||||
{
|
{
|
||||||
print "Building trickify_src_list\n" ;
|
print "Building trickify_src_list\n" ;
|
||||||
$make_src_list = "python3 $my_path../share/trick/makefiles/build_trickify_src_list.py" ;
|
$make_src_list = "python3 $my_path../share/trick/pymods/trick/build_trickify_src_list.py" ;
|
||||||
print(`$make_src_list`) ;
|
print(`$make_src_list`) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -213,7 +213,7 @@ if ($full_build)
|
|||||||
if($build_trickify_obj_list and $full_build)
|
if($build_trickify_obj_list and $full_build)
|
||||||
{
|
{
|
||||||
print "Building trickify_obj_list\n" ;
|
print "Building trickify_obj_list\n" ;
|
||||||
$make_obj_list = "python3 $my_path../share/trick/makefiles/build_trickify_obj_list.py" ;
|
$make_obj_list = "python3 $my_path../share/trick/pymods/trick/build_trickify_obj_list.py" ;
|
||||||
print(`$make_obj_list`) ;
|
print(`$make_obj_list`) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ import os
|
|||||||
path = ""
|
path = ""
|
||||||
if "TRICK_HOME" in os.environ:
|
if "TRICK_HOME" in os.environ:
|
||||||
path = os.getenv("TRICK_HOME")
|
path = os.getenv("TRICK_HOME")
|
||||||
path += "/share/trick/makefiles/build_trickify.py"
|
path += "/share/trick/pymods/trick/build_trickify.py"
|
||||||
|
|
||||||
exec(open(path).read())
|
exec(open(path).read())
|
||||||
|
|
@ -3,7 +3,7 @@ import os
|
|||||||
path = ""
|
path = ""
|
||||||
if "TRICK_HOME" in os.environ:
|
if "TRICK_HOME" in os.environ:
|
||||||
path = os.getenv("TRICK_HOME")
|
path = os.getenv("TRICK_HOME")
|
||||||
path += "/share/trick/makefiles/build_trickify.py"
|
path += "/share/trick/pymods/trick/build_trickify.py"
|
||||||
|
|
||||||
exec(open(path).read())
|
exec(open(path).read())
|
||||||
|
|
@ -3,7 +3,7 @@ import os
|
|||||||
path = ""
|
path = ""
|
||||||
if "TRICK_HOME" in os.environ:
|
if "TRICK_HOME" in os.environ:
|
||||||
path = os.getenv("TRICK_HOME")
|
path = os.getenv("TRICK_HOME")
|
||||||
path += "/share/trick/makefiles/build_trickify.py"
|
path += "/share/trick/pymods/trick/build_trickify.py"
|
||||||
|
|
||||||
exec(open(path).read())
|
exec(open(path).read())
|
||||||
|
|
Loading…
Reference in New Issue
Block a user