Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ class BaseEnv(BundlePackage):
version("1.0.0")

# Basic utilities
if sys.platform == "darwin":
depends_on("libbacktrace", type="run")
depends_on("cmake", type="run")
depends_on("git", type="run")
depends_on("wget", type="run")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class JediBaseEnv(BundlePackage):
variant("hdf4", default=True, description="Build hdf4 library and python hdf module")
variant("bufrquery", default=True, description="Build bufr-query library")

depends_on("libbacktrace", type="run")
depends_on("base-env", type="run")
depends_on("bison", type="run")
depends_on("blas", type="run")
Expand Down
Loading