diff options
author | Steve Bennett <steveb@workware.net.au> | 2011-07-08 04:17:05 +1000 |
---|---|---|
committer | Steve Bennett <steveb@workware.net.au> | 2011-07-08 04:17:05 +1000 |
commit | d7d212111b459181a89a4c14554f85265c430340 (patch) | |
tree | 73c067a265a7e41d2ffb527fd481efdcb84cf6c6 | |
parent | 9856421bff09bbd4aeedc76820e5ae79501691cc (diff) | |
download | jimtcl-d7d212111b459181a89a4c14554f85265c430340.zip jimtcl-d7d212111b459181a89a4c14554f85265c430340.tar.gz jimtcl-d7d212111b459181a89a4c14554f85265c430340.tar.bz2 |
Update make-bootstrap-jim for consistent tcl_platform
$tcl_platform(platform) should be "windows" on mingw
Signed-off-by: Steve Bennett <steveb@workware.net.au>
-rwxr-xr-x | make-bootstrap-jim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make-bootstrap-jim b/make-bootstrap-jim index 92a1037..a7b81b2 100755 --- a/make-bootstrap-jim +++ b/make-bootstrap-jim @@ -60,8 +60,8 @@ done # Can we make a bootstrap jimsh work even on mingw32? cat <<EOF #if defined(__MINGW32__) -#define TCL_PLATFORM_OS "windows" -#define TCL_PLATFORM_PLATFORM "mingw" +#define TCL_PLATFORM_OS "mingw" +#define TCL_PLATFORM_PLATFORM "windows" #define HAVE_MKDIR_ONE_ARG #define HAVE_SYSTEM #else |