diff options
author | nijtmans <nijtmans> | 2010-02-18 21:36:59 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-02-18 21:36:59 (GMT) |
commit | 573800384ef04145fe35a7631718ef7ce227379a (patch) | |
tree | 38908a349b059a69b3a4d2d96b225d3af41d313b | |
parent | 11bf5730b675cc727ab647b5042bdc84cf8a6b79 (diff) | |
download | tk-573800384ef04145fe35a7631718ef7ce227379a.zip tk-573800384ef04145fe35a7631718ef7ce227379a.tar.gz tk-573800384ef04145fe35a7631718ef7ce227379a.tar.bz2 |
Fix sh quoting error reported in bash-3.1+ [Bug 1377619] (schafer)
core_8_3_1_branch
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | unix/configure | 2 | ||||
-rw-r--r-- | unix/tcl.m4 | 4 |
3 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2010-02-18 Jan Nijtmans <nijtmans@users.sf.net> + + * unix/tcl.m4, unix/configure: Fix sh quoting error reported in + bash-3.1+ [Bug 1377619] (schafer) + 2003-02-14 Jeff Hobbs <jeffh@ActiveState.com> * unix/configure: diff --git a/unix/configure b/unix/configure index 20b3a60..bcc7ad9 100755 --- a/unix/configure +++ b/unix/configure @@ -1763,7 +1763,7 @@ echo "configure:1754: checking system version (for dynamic loading)" >&5 # 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 }' /etc/.relid'` + system=MP-RAS-`awk '{print }' /etc/.relid` fi if test "`uname -s`" = "AIX" ; then system=AIX-`uname -v`.`uname -r` diff --git a/unix/tcl.m4 b/unix/tcl.m4 index cbf5dbc..6ed4b09 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -633,7 +633,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` @@ -1851,7 +1851,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` |