summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2004-11-26 19:42:04 (GMT)
committerdgp <dgp@noemail.net>2004-11-26 19:42:04 (GMT)
commit73ce14377fe4cf85af64e196952d4bb827461228 (patch)
tree12e355d514da43fd99eeb0f60b975eea1ebde074 /library
parentb72b7a6989956fa72ede7b546b7ed49124e69f5f (diff)
downloadtcl-73ce14377fe4cf85af64e196952d4bb827461228.zip
tcl-73ce14377fe4cf85af64e196952d4bb827461228.tar.gz
tcl-73ce14377fe4cf85af64e196952d4bb827461228.tar.bz2
* library/auto.tcl (tcl_findLibrary): Made sure the uniquifying
operations on the search path does not also normalize. [Bug 1072136] FossilOrigin-Name: 6bc286dbd49feccf913894fb47e52c1ab2d44e62
Diffstat (limited to 'library')
-rw-r--r--library/auto.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/auto.tcl b/library/auto.tcl
index d3a3fab..431895d 100644
--- a/library/auto.tcl
+++ b/library/auto.tcl
@@ -3,7 +3,7 @@
# utility procs formerly in init.tcl dealing with auto execution
# of commands and can be auto loaded themselves.
#
-# RCS: @(#) $Id: auto.tcl,v 1.12.2.1 2004/11/16 16:56:01 dgp Exp $
+# RCS: @(#) $Id: auto.tcl,v 1.12.2.2 2004/11/26 19:42:06 dgp Exp $
#
# Copyright (c) 1991-1993 The Regents of the University of California.
# Copyright (c) 1994-1998 Sun Microsystems, Inc.
@@ -136,7 +136,7 @@ proc tcl_findLibrary {basename version patch initScript enVarName varName} {
}
if {[info exists seen($norm)]} { continue }
set seen($norm) ""
- lappend uniqdirs $norm
+ lappend uniqdirs $i
}
set dirs $uniqdirs
foreach i $dirs {