diff options
author | Harmen Stoppels <me@harmenstoppels.nl> | 2023-12-07 18:19:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-07 09:19:55 -0800 |
commit | 5a7e691ae2ebc545c3a64b00b428dab9c621770a (patch) | |
tree | 82945554676d42c2f05fe14bb2a718f6d51a64c1 | |
parent | b9f63ab40bb9eb68f320d517fb81fb5bdfc3405c (diff) | |
download | spack-5a7e691ae2ebc545c3a64b00b428dab9c621770a.tar.gz spack-5a7e691ae2ebc545c3a64b00b428dab9c621770a.tar.bz2 spack-5a7e691ae2ebc545c3a64b00b428dab9c621770a.tar.xz spack-5a7e691ae2ebc545c3a64b00b428dab9c621770a.zip |
freebsd (#41480)
-rw-r--r-- | lib/spack/spack/test/architecture.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/spack/spack/test/architecture.py b/lib/spack/spack/test/architecture.py index 7bea7a1d86..b4267416a2 100644 --- a/lib/spack/spack/test/architecture.py +++ b/lib/spack/spack/test/architecture.py @@ -30,6 +30,8 @@ def current_host_platform(): current_platform = spack.platforms.Darwin() elif "Windows" in platform.system(): current_platform = spack.platforms.Windows() + elif "FreeBSD" in platform.system(): + current_platform = spack.platforms.FreeBSD() return current_platform |