diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-05-25 07:24:04 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-05-25 07:24:04 (GMT) |
commit | f182c12f4a885f158795c23c07ffbc23af91c41e (patch) | |
tree | 088cb08cc1c8f06f646577e8399ee87124c6ec7b /win/Makefile.in | |
parent | b8df44e69e283fac9c93c0f64a77f61780e11ada (diff) | |
download | tcl-f182c12f4a885f158795c23c07ffbc23af91c41e.zip tcl-f182c12f4a885f158795c23c07ffbc23af91c41e.tar.gz tcl-f182c12f4a885f158795c23c07ffbc23af91c41e.tar.bz2 |
[Bug 473946]: special characters not correctly sent, now for XTYP_EXECUTE as well as XTYP_REQUEST.
Fix "make genstubs" when cross-compiling on UNIX
Diffstat (limited to 'win/Makefile.in')
-rw-r--r-- | win/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index 58811e5..af4ca68 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -620,7 +620,7 @@ $(GENERIC_DIR)/tclStubInit.c: $(GENERIC_DIR)/tcl.decls \ @echo "This warning can be safely ignored, do not report as a bug!" genstubs: - $(TCL_EXE) "$(ROOT_DIR_NATIVE)\tools\genStubs.tcl" \ + $(TCL_EXE) "$(ROOT_DIR_NATIVE)/tools/genStubs.tcl" \ "$(GENERIC_DIR_NATIVE)" \ - "$(GENERIC_DIR_NATIVE)\tcl.decls" \ - "$(GENERIC_DIR_NATIVE)\tclInt.decls" + "$(GENERIC_DIR_NATIVE)/tcl.decls" \ + "$(GENERIC_DIR_NATIVE)/tclInt.decls" |