diff options
author | hobbs <hobbs> | 2005-12-12 20:55:39 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2005-12-12 20:55:39 (GMT) |
commit | 5bc52c426cb7ff6669f2e4afd9b583b1419fb465 (patch) | |
tree | c826d3e5994b2ce23bdf10f87c5683cad90a43ea /unix | |
parent | 3444f60a7e5bd27251cc245245aaea207943d403 (diff) | |
download | tk-5bc52c426cb7ff6669f2e4afd9b583b1419fb465.zip tk-5bc52c426cb7ff6669f2e4afd9b583b1419fb465.tar.gz tk-5bc52c426cb7ff6669f2e4afd9b583b1419fb465.tar.bz2 |
* unix/tcl.m4, unix/configure: Fix sh quoting error reported in
bash-3.1+ [Bug 1377619] (schafer)
Diffstat (limited to 'unix')
-rwxr-xr-x | unix/configure | 2 | ||||
-rw-r--r-- | unix/tcl.m4 | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/unix/configure b/unix/configure index f6b1b30..0f06e27 100755 --- a/unix/configure +++ b/unix/configure @@ -1946,7 +1946,7 @@ echo "configure:1937: 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 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` |