diff options
author | hobbs <hobbs> | 2005-12-12 20:58:07 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2005-12-12 20:58:07 (GMT) |
commit | 02df966d97ed676152a98b8f02027fd41f53f9f2 (patch) | |
tree | fca95fecf0ceaae7c725179396d2bfaa7166a4e7 /unix/tcl.m4 | |
parent | 19c205379f4bd33606ed447a19d1040881f12020 (diff) | |
download | tk-02df966d97ed676152a98b8f02027fd41f53f9f2.zip tk-02df966d97ed676152a98b8f02027fd41f53f9f2.tar.gz tk-02df966d97ed676152a98b8f02027fd41f53f9f2.tar.bz2 |
* unix/tcl.m4, unix/configure: Fix sh quoting error reported in
bash-3.1+ [Bug 1377619] (schafer)
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 211dae3..c313068 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -956,7 +956,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` @@ -2257,7 +2257,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` |