diff options
author | hobbs <hobbs> | 2005-12-12 20:58:18 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2005-12-12 20:58:18 (GMT) |
commit | 2ca3685e1bc5ab2a213ebe4b55e087954e122ff2 (patch) | |
tree | 7efdc545c50730afe90a23274e48ca496e874cf2 /unix/configure | |
parent | f9be2b88acd38259f5aa73a37d9b70ff617cca92 (diff) | |
download | tcl-2ca3685e1bc5ab2a213ebe4b55e087954e122ff2.zip tcl-2ca3685e1bc5ab2a213ebe4b55e087954e122ff2.tar.gz tcl-2ca3685e1bc5ab2a213ebe4b55e087954e122ff2.tar.bz2 |
* unix/tcl.m4, unix/configure: Fix sh quoting error reported in
bash-3.1+ [Bug 1377619] (schafer)
Diffstat (limited to 'unix/configure')
-rwxr-xr-x | unix/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/configure b/unix/configure index d906f7b..9bdbe82 100755 --- a/unix/configure +++ b/unix/configure @@ -6254,7 +6254,7 @@ echo "${ECHO_T}unknown (can't find uname command)" >&6 # 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` @@ -14829,7 +14829,7 @@ echo $ECHO_N "checking FIONBIO vs. O_NONBLOCK for nonblocking I/O... $ECHO_C" >& # 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` |