diff options
author | das <das> | 2008-08-13 23:07:07 (GMT) |
---|---|---|
committer | das <das> | 2008-08-13 23:07:07 (GMT) |
commit | e48a13a4a47c8dabc6edd925ae0f0d7eef67e047 (patch) | |
tree | 6627ad56f748bbe38cca117e1cbac524f91c1795 /unix/Makefile.in | |
parent | edb0651e6bc56331193b87b671cf154fbb556624 (diff) | |
download | tcl-e48a13a4a47c8dabc6edd925ae0f0d7eef67e047.zip tcl-e48a13a4a47c8dabc6edd925ae0f0d7eef67e047.tar.gz tcl-e48a13a4a47c8dabc6edd925ae0f0d7eef67e047.tar.bz2 |
* unix/Makefile.in: ensure Makefile shell is /bin/bash for
* unix/configure.in (SunOS): DTrace-enabled build on Solaris.
(followup to 2008-06-12) [Bug 2016584]
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index a2395eb..3ed9008 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -4,7 +4,7 @@ # "./configure", which is a configuration script generated by the "autoconf" # program (constructs like "@foo@" will get replaced in the actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.244 2008/08/11 21:58:07 dgp Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.245 2008/08/13 23:07:07 das Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -139,7 +139,7 @@ NO_DEPRECATED_FLAGS = # Some versions of make, like SGI's, use the following variable to determine # which shell to use for executing commands: -SHELL = /bin/sh +SHELL = @MAKEFILE_SHELL@ # Tcl used to let the configure script choose which program to use for # installing, but there are just too many different versions of "install" |