diff options
-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` |