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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,7 +51,7 @@ class Tcl(AutotoolsPackage, NMakePackage, SourceforgePackage, TclMixin):
depends_on("zlib-api") depends_on("zlib-api")
# No compiler wrappers on Windows # 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}") filter_compiler_wrappers("tclConfig.sh", relative_root="lib", when=f"platform={plat}")
build_system("autotools", "nmake") build_system("autotools", "nmake")