Skip to content

Commit

Permalink
Moved the py files to their appropriate directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Pherring04 committed Dec 9, 2024
1 parent 573211e commit d0316b5
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions bin/trick-ify
Original file line number Diff line number Diff line change
Expand Up @@ -159,15 +159,15 @@ elsif ( $build_type eq so )
if ($build_s_source)
{
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`) ;
}

#Build source file list, only if trickifying the entire library
if ($build_trickify_src_list and $full_build)
{
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`) ;
}

Expand Down Expand Up @@ -213,7 +213,7 @@ if ($full_build)
if($build_trickify_obj_list and $full_build)
{
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`) ;
}

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
path = ""
if "TRICK_HOME" in os.environ:
path = os.getenv("TRICK_HOME")
path += "/share/trick/makefiles/build_trickify.py"
path += "/share/trick/pymods/trick/build_trickify.py"

exec(open(path).read())

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
path = ""
if "TRICK_HOME" in os.environ:
path = os.getenv("TRICK_HOME")
path += "/share/trick/makefiles/build_trickify.py"
path += "/share/trick/pymods/trick/build_trickify.py"

exec(open(path).read())

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
path = ""
if "TRICK_HOME" in os.environ:
path = os.getenv("TRICK_HOME")
path += "/share/trick/makefiles/build_trickify.py"
path += "/share/trick/pymods/trick/build_trickify.py"

exec(open(path).read())

Expand Down

0 comments on commit d0316b5

Please sign in to comment.