Skip to content

Commit

Permalink
Add autoconf and automake
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Jan 29, 2024
1 parent c628738 commit dfdf56f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/key4hep-stack/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,5 +164,10 @@ def setup_run_environment(self, env):
env.prepend_path("PATH", self.spec["libtool"].prefix.bin)
env.prepend_path("LD_LIBRARY_PATH", self.spec["libtool"].prefix.lib)

if "autoconf" in self.spec:
env.prepend_path("PATH", self.spec["autoconf"].prefix.bin)
if "automake" in self.spec:
env.prepend_path("PATH", self.spec["automake"].prefix.bin)

def install(self, spec, prefix):
return install_setup_script(self, spec, prefix, "K4_LATEST_SETUP_PATH")

0 comments on commit dfdf56f

Please sign in to comment.