Skip to content

Commit

Permalink
acts: append Python_EXECUTABLE
Browse files Browse the repository at this point in the history
  • Loading branch information
wdconinc committed Jun 23, 2023
1 parent 51a92d4 commit 5d9eaaf
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/acts/package.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from spack import *
from spack.pkg.builtin.acts import Acts as BuiltinActs


class Acts(BuiltinActs):
def cmake_args(self):
args = super().cmake_args()
args.append(self.define("Python_EXECUTABLE", self.spec["python"].command.path))
return args

0 comments on commit 5d9eaaf

Please sign in to comment.