diff options
author | das <das> | 2008-08-13 23:07:16 (GMT) |
---|---|---|
committer | das <das> | 2008-08-13 23:07:16 (GMT) |
commit | 5986175459fc8343fed71e8a27813e69b47cb32d (patch) | |
tree | d215ac0ba47459ee38a87874d4733f65ed0425ad /unix/Makefile.in | |
parent | 07b124d9fd66e9df826368e3c867ede5a4e5d9a0 (diff) | |
download | tcl-5986175459fc8343fed71e8a27813e69b47cb32d.zip tcl-5986175459fc8343fed71e8a27813e69b47cb32d.tar.gz tcl-5986175459fc8343fed71e8a27813e69b47cb32d.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 98a1d32..45a2fad 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.229.2.7 2008/08/11 21:57:15 dgp Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.229.2.8 2008/08/13 23:07:16 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" |