summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/tcl/package.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/tcl/package.py b/var/spack/repos/builtin/packages/tcl/package.py
index 21a31efaf3..ab05352dc2 100644
--- a/var/spack/repos/builtin/packages/tcl/package.py
+++ b/var/spack/repos/builtin/packages/tcl/package.py
@@ -70,6 +70,14 @@ class Tcl(AutotoolsPackage):
# ========================================================================
# Set up environment to make install easy for tcl extensions.
# ========================================================================
+ @property
+ def command(self):
+ """Returns the tclsh command.
+
+ :returns: The tclsh command
+ :rtype: Executable
+ """
+ return Executable(os.path.realpath(self.prefix.bin.tclsh))
@property
def tcl_lib_dir(self):
@@ -94,7 +102,7 @@ class Tcl(AutotoolsPackage):
# where a system provided tcl is run against the standard libraries
# of a Spack built tcl. See issue #7128 that relates to python but
# it boils down to the same situation we have here.
- spack_env.prepend_path('PATH', os.path.dirname(self.prefix.bin))
+ spack_env.prepend_path('PATH', os.path.dirname(self.command.path))
tcl_paths = [join_path(self.prefix, self.tcl_builtin_lib_dir)]