diff options
author | nijtmans <nijtmans> | 2010-02-19 23:44:46 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-02-19 23:44:46 (GMT) |
commit | 2de0f1fed47ed0df044d29ee454fe25435859500 (patch) | |
tree | cc959f087012cc48c4aeebd1cbf6af455771c56c | |
parent | 050e32460ea3ba6ca9d237e0f1aecb299d4b358e (diff) | |
download | tcl-core_8_2_1_branch.zip tcl-core_8_2_1_branch.tar.gz tcl-core_8_2_1_branch.tar.bz2 |
Fix sh quoting error reported in bash-3.1+ [Bug 1377619]
core_8_2_1_branch
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | unix/tcl.m4 | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2010-02-19 Jan Nijtmans <nijtmans@users.sf.net> + + * unix/tcl.m4: Fix sh quoting error reported in + bash-3.1+ [Bug 1377619] (schafer) + 1999-12-13 Jennifer Hom <jenn@scriptics.com> * library/tcltest1.0/tcltest.tcl: Modified testConstraint(root) diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 40cb6eb..b7789c0 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -533,7 +533,7 @@ AC_DEFUN(SC_CONFIG_CFLAGS, [ # results, and the version is kept in special file). if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then - system=MP-RAS-`awk '{print $3}' /etc/.relid'` + system=MP-RAS-`awk '{print $3}' /etc/.relid` fi if test "`uname -s`" = "AIX" ; then system=AIX-`uname -v`.`uname -r` @@ -1379,7 +1379,7 @@ AC_DEFUN(SC_BLOCKING_STYLE, [ # results, and the version is kept in special file). if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then - system=MP-RAS-`awk '{print $3}' /etc/.relid'` + system=MP-RAS-`awk '{print $3}' /etc/.relid` fi if test "`uname -s`" = "AIX" ; then system=AIX-`uname -v`.`uname -r` |