summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2004-11-26 19:49:14 (GMT)
committerdgp <dgp@noemail.net>2004-11-26 19:49:14 (GMT)
commit15c5388cd76bdf791570b39b89adca47495eb864 (patch)
treecc62b76049e5c6df9781d6555cc55ffd687776a2 /library
parentb4ce526f4b0d7f7786390f636dc4a9901c46e504 (diff)
downloadtcl-15c5388cd76bdf791570b39b89adca47495eb864.zip
tcl-15c5388cd76bdf791570b39b89adca47495eb864.tar.gz
tcl-15c5388cd76bdf791570b39b89adca47495eb864.tar.bz2
* library/auto.tcl (tcl_findLibrary): Made sure the uniquifying
operations on the search path does not also normalize. [Bug 1072136] FossilOrigin-Name: 6771608575f4ebc3300a62e06438b2840036bb6b
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 7552414..122e146 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.19 2004/10/25 17:24:39 dgp Exp $
+# RCS: @(#) $Id: auto.tcl,v 1.20 2004/11/26 19:49:14 dgp Exp $
#
# Copyright (c) 1991-1993 The Regents of the University of California.
# Copyright (c) 1994-1998 Sun Microsystems, Inc.
@@ -130,7 +130,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 {