From 06dbda7465c15110cbb80166a1efe2f9a6a47c31 Mon Sep 17 00:00:00 2001 From: Wouter Deconinck Date: Thu, 6 Mar 2025 18:50:57 -0600 Subject: [PATCH] =?UTF-8?q?Revert=20"Ensure=20if=20TCL=20is=20already=20so?= =?UTF-8?q?urced=20on=20the=20system=20the=20lib=20paths=20don't=20in?= =?UTF-8?q?=E2=80=A6"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit aa86342814a107119e1503586e0c1e08d1160151. --- var/spack/repos/builtin/packages/tcl/package.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/var/spack/repos/builtin/packages/tcl/package.py b/var/spack/repos/builtin/packages/tcl/package.py index 08c592a68a5..5d5419a5c99 100644 --- a/var/spack/repos/builtin/packages/tcl/package.py +++ b/var/spack/repos/builtin/packages/tcl/package.py @@ -182,12 +182,6 @@ def setup_dependent_build_environment(self, env, dependent_spec): class AutotoolsBuilder(AnyBuilder, spack.build_systems.autotools.AutotoolsBuilder): configure_directory = "unix" - # if TCL is present on the system this may be set to the system's - # existing TCL so ensure it is unset - # https://wiki.tcl-lang.org/page/TCL%5FLIBRARY - def setup_build_environment(self, env): - env.set("TCL_LIBRARY", "") - def install(self, pkg, spec, prefix): with working_dir(self.build_directory): make("install")