diff options
author | hobbs <hobbs> | 2005-12-12 20:53:59 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2005-12-12 20:53:59 (GMT) |
commit | 02b4f5f29a47603fed5faa0d5fe64f5a398940cc (patch) | |
tree | de978178367c6e72c3bd7f3f228ee3805df1d2d0 /unix/tcl.m4 | |
parent | 7a116443a870099b88001b8017e2100cc8ee0937 (diff) | |
download | tcl-02b4f5f29a47603fed5faa0d5fe64f5a398940cc.zip tcl-02b4f5f29a47603fed5faa0d5fe64f5a398940cc.tar.gz tcl-02b4f5f29a47603fed5faa0d5fe64f5a398940cc.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 01479b2..1c11781 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -879,7 +879,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` @@ -2317,7 +2317,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` |