aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2011-07-08 04:17:05 +1000
committerSteve Bennett <steveb@workware.net.au>2011-07-08 04:17:05 +1000
commitd7d212111b459181a89a4c14554f85265c430340 (patch)
tree73c067a265a7e41d2ffb527fd481efdcb84cf6c6
parent9856421bff09bbd4aeedc76820e5ae79501691cc (diff)
downloadjimtcl-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-xmake-bootstrap-jim4
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