update an everywhere-but-windows check to include freebsd (#41819)

This commit is contained in:
Peter Scheibel
2023-12-22 12:11:04 -08:00
committed by GitHub
parent 2f0df0131c
commit a2dc11acd3

View File

@@ -51,7 +51,7 @@ class Tcl(AutotoolsPackage, NMakePackage, SourceforgePackage, TclMixin):
depends_on("zlib-api")
# No compiler wrappers on Windows
for plat in ["linux", "darwin", "cray"]:
for plat in ["linux", "darwin", "cray", "freebsd"]:
filter_compiler_wrappers("tclConfig.sh", relative_root="lib", when=f"platform={plat}")
build_system("autotools", "nmake")