diff options
author | hobbs <hobbs@noemail.net> | 2005-12-12 20:58:07 (GMT) |
---|---|---|
committer | hobbs <hobbs@noemail.net> | 2005-12-12 20:58:07 (GMT) |
commit | c84c6accd552c1aa02340ab28f9a5565edf67ab2 (patch) | |
tree | fca95fecf0ceaae7c725179396d2bfaa7166a4e7 /unix/configure | |
parent | 55f2603bae18471377fca81c95624ed2033c30c5 (diff) | |
download | tk-c84c6accd552c1aa02340ab28f9a5565edf67ab2.zip tk-c84c6accd552c1aa02340ab28f9a5565edf67ab2.tar.gz tk-c84c6accd552c1aa02340ab28f9a5565edf67ab2.tar.bz2 |
* unix/tcl.m4, unix/configure: Fix sh quoting error reported in
bash-3.1+ [Bug 1377619] (schafer)
FossilOrigin-Name: 2d92acd2da092175e9d8f941abfa2a37b78a51ab
Diffstat (limited to 'unix/configure')
-rwxr-xr-x | unix/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/configure b/unix/configure index 6621cb5..860ae3d 100755 --- a/unix/configure +++ b/unix/configure @@ -4502,7 +4502,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` |