diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-05-06 07:35:05 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-05-06 07:35:05 (GMT) |
commit | d3c1612587ff8f7f288fa96a2daddfdcd0cbff32 (patch) | |
tree | 1de25a0ce1271dddf30868d57471b4c788531f20 /library | |
parent | ffd62239ea93e9fa93f1036f03a281ed5d522848 (diff) | |
parent | 9d84efaa149ad0656809cbb06f7c05ffbab65c60 (diff) | |
download | tcl-d3c1612587ff8f7f288fa96a2daddfdcd0cbff32.zip tcl-d3c1612587ff8f7f288fa96a2daddfdcd0cbff32.tar.gz tcl-d3c1612587ff8f7f288fa96a2daddfdcd0cbff32.tar.bz2 |
merge trunk
Diffstat (limited to 'library')
-rw-r--r-- | library/platform/platform.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/platform/platform.tcl b/library/platform/platform.tcl index a1a728b..5698425 100644 --- a/library/platform/platform.tcl +++ b/library/platform/platform.tcl @@ -256,7 +256,7 @@ proc ::platform::LibcVersion {base _->_ vv} { if {![catch { set vdata [lindex [split [exec $libc] \n] 0] }]} { - regexp {version ([0-9]+(\.[0-9]+)*), by} $vdata -> v + regexp {version ([0-9]+(\.[0-9]+)*)} $vdata -> v foreach {major minor} [split $v .] break set v glibc${major}.${minor} return 1 @@ -368,7 +368,7 @@ proc ::platform::patterns {id} { # ### ### ### ######### ######### ######### ## Ready -package provide platform 1.0.11 +package provide platform 1.0.12 # ### ### ### ######### ######### ######### ## Demo application |