diff options
| author | andreask@activestate.com <andreas_kupries> | 2010-04-14 19:42:28 (GMT) |
|---|---|---|
| committer | andreask@activestate.com <andreas_kupries> | 2010-04-14 19:42:28 (GMT) |
| commit | e70c8004248dfa6232069190ee0b566b833dec74 (patch) | |
| tree | 58520b07f92547162a06dca7b520f50cd161f1dd | |
| parent | 4135e9b0ffed2478a361792c094a4bd204ef1253 (diff) | |
| download | tcl-e70c8004248dfa6232069190ee0b566b833dec74.zip tcl-e70c8004248dfa6232069190ee0b566b833dec74.tar.gz tcl-e70c8004248dfa6232069190ee0b566b833dec74.tar.bz2 | |
* library/platform/platform.tcl: Linux platform identification:
Check /lib64 for existence of files matching libc* before
accepting it as base directory. This can happen on weirdly
installed 32bit systems which have an empty or partially filled
/lib64 without an actual libc. Bumped to version 1.0.6.
| -rw-r--r-- | ChangeLog | 8 | ||||
| -rw-r--r-- | library/platform/platform.tcl | 7 |
2 files changed, 13 insertions, 2 deletions
@@ -1,3 +1,11 @@ +2010-04-14 Andreas Kupries <andreask@activestate.com> + + * library/platform/platform.tcl: Linux platform identification: + Check /lib64 for existence of files matching libc* before + accepting it as base directory. This can happen on weirdly + installed 32bit systems which have an empty or partially filled + /lib64 without an actual libc. Bumped to version 1.0.6. + 2010-04-06 Zoran Vasiljevic <vasiljevic@users.sourceforge.net> * generic/tclCmdMZ.c (Tcl_RegexpObjCmd): fixed object leak. diff --git a/library/platform/platform.tcl b/library/platform/platform.tcl index 1a454cd..d132c6f 100644 --- a/library/platform/platform.tcl +++ b/library/platform/platform.tcl @@ -175,7 +175,10 @@ proc ::platform::identify {} { set v unknown - if {[file exists /lib64] && [file isdirectory /lib64]} { + if {[file exists /lib64] && + [file isdirectory /lib64] && + [llength [glob -nocomplain -directory /lib64 libc*]] + } { set base /lib64 } else { set base /lib @@ -289,7 +292,7 @@ proc ::platform::patterns {id} { # ### ### ### ######### ######### ######### ## Ready -package provide platform 1.0.5 +package provide platform 1.0.6 # ### ### ### ######### ######### ######### ## Demo application |
