diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-09-30 12:57:02 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-09-30 12:57:02 (GMT) |
commit | 3964ec3d8cef652a7ff8f12578bf910bedd0f50b (patch) | |
tree | b22a7346d6ee21a9768ed6e622a2adf6034421b1 /library/platform | |
parent | 5572aa0ec790cb0075eca068cf30ae366abb7f4c (diff) | |
download | tcl-3964ec3d8cef652a7ff8f12578bf910bedd0f50b.zip tcl-3964ec3d8cef652a7ff8f12578bf910bedd0f50b.tar.gz tcl-3964ec3d8cef652a7ff8f12578bf910bedd0f50b.tar.bz2 |
Fix [738bc50e93]: auto_execok doesn't recognise mklink on windows. Remove some unnecessary end-of-line spacing.
Diffstat (limited to 'library/platform')
-rw-r--r-- | library/platform/platform.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/platform/platform.tcl b/library/platform/platform.tcl index d510541..8dd91ee 100644 --- a/library/platform/platform.tcl +++ b/library/platform/platform.tcl @@ -331,7 +331,7 @@ proc ::platform::patterns {id} { lappend res macosx-universal macosx-i386-x86_64 } macosx*-* { - # 10.5+ + # 10.5+ if {[regexp {macosx([^-]*)-(.*)} $id -> v cpu]} { switch -exact -- $cpu { |