diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-09-30 13:44:52 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-09-30 13:44:52 (GMT) |
commit | 48e066711f2f019314605b45c4b136118d9c1b45 (patch) | |
tree | 0aa88f7c74851b832a73830d5ecada0f81a8f72c | |
parent | 3964ec3d8cef652a7ff8f12578bf910bedd0f50b (diff) | |
download | tcl-48e066711f2f019314605b45c4b136118d9c1b45.zip tcl-48e066711f2f019314605b45c4b136118d9c1b45.tar.gz tcl-48e066711f2f019314605b45c4b136118d9c1b45.tar.bz2 |
Mutch simpler solution to [219866c1e9]: In stead of filtering out version information from the string, make sure that ::platform::generic doesn't contain this version information in the first place.
-rw-r--r-- | library/platform/platform.tcl | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/library/platform/platform.tcl b/library/platform/platform.tcl index 8dd91ee..c596e60 100644 --- a/library/platform/platform.tcl +++ b/library/platform/platform.tcl @@ -93,10 +93,13 @@ proc ::platform::generic {} { } } - switch -- $plat { + switch -glob -- $plat { + cygwin* { + set plat cygwin + } windows { if {$tcl_platform(platform) == "unix"} { - set plat cygwin_nt + set plat cygwin } else { set plat win32 } @@ -104,7 +107,6 @@ proc ::platform::generic {} { # Do not check wordSize, win32-x64 is an IL32P64 platform. set cpu x86_64 } - append plat -$tcl_platform(osVersion) } sunos { set plat solaris @@ -163,12 +165,9 @@ proc ::platform::identify {} { global tcl_platform set id [generic] - regexp {^([^-]+)(-[0-9\.]+)?(-wow)?-([^-]+)$} $id -> plat ver wow cpu + regexp {^([^-]+)-([^-]+)$} $id -> plat ver wow cpu switch -- $plat { - cygwin_nt { - return "${plat}-${cpu}" - } solaris { regsub {^5} $tcl_platform(osVersion) 2 text append plat $text |