diff options
author | mo <mo> | 2000-07-19 01:17:41 (GMT) |
---|---|---|
committer | mo <mo> | 2000-07-19 01:17:41 (GMT) |
commit | 7b1328b5117d3db6195f211eea6984bb62284cae (patch) | |
tree | 9f46e8d483335d93f847729c4223b96d822578c4 /win/tcl.m4 | |
parent | 62be610b92eed419ebbb1542c05eb31ffabed0c0 (diff) | |
download | tcl-7b1328b5117d3db6195f211eea6984bb62284cae.zip tcl-7b1328b5117d3db6195f211eea6984bb62284cae.tar.gz tcl-7b1328b5117d3db6195f211eea6984bb62284cae.tar.bz2 |
* unix/configure.in:
* unix/tcl.m4:
* win/tcl.m4: Properly quote arguments to m4
macros. This allows Tcl to work with the new
version of autoconf.
Diffstat (limited to 'win/tcl.m4')
-rw-r--r-- | win/tcl.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -73,7 +73,7 @@ AC_DEFUN(SC_PATH_TKCONFIG, [ AC_MSG_ERROR(There is no tkConfig.sh in $TK_BIN_DIR: perhaps you did not specify the Tk *build* directory (not the toplevel Tk directory) or you forgot to configure Tk?) fi - AC_MSG_RESULT($TK_BIN_DIR/tkConfig.sh) + AC_MSG_RESULT([$TK_BIN_DIR/tkConfig.sh]) ]) #------------------------------------------------------------------------ @@ -276,7 +276,7 @@ AC_DEFUN(SC_ENABLE_THREADS, [ AC_DEFINE(TCL_THREADS) else TCL_THREADS=0 - AC_MSG_RESULT(no (default)) + AC_MSG_RESULT([no (default)]) fi ]) |