summaryrefslogtreecommitdiffstats
path: root/library/auto.tcl
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2004-12-01 22:14:20 (GMT)
committerdgp <dgp@users.sourceforge.net>2004-12-01 22:14:20 (GMT)
commit5832d6e914aef53f269531d6ad9b8d2a14036b6c (patch)
treee6f7fc4219d257351cc65cb74aa83b05cf2603f0 /library/auto.tcl
parent7b470edbf5e874d173c860d5296ef3f25f845134 (diff)
downloadtcl-5832d6e914aef53f269531d6ad9b8d2a14036b6c.zip
tcl-5832d6e914aef53f269531d6ad9b8d2a14036b6c.tar.gz
tcl-5832d6e914aef53f269531d6ad9b8d2a14036b6c.tar.bz2
added comment about freewrap difficulties
Diffstat (limited to 'library/auto.tcl')
-rw-r--r--library/auto.tcl6
1 files changed, 5 insertions, 1 deletions
diff --git a/library/auto.tcl b/library/auto.tcl
index 122e146..6638cc1 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.20 2004/11/26 19:49:14 dgp Exp $
+# RCS: @(#) $Id: auto.tcl,v 1.21 2004/12/01 22:14:20 dgp Exp $
#
# Copyright (c) 1991-1993 The Regents of the University of California.
# Copyright (c) 1994-1998 Sun Microsystems, Inc.
@@ -123,6 +123,10 @@ proc tcl_findLibrary {basename version patch initScript enVarName varName} {
# uniquify $dirs in order
array set seen {}
foreach i $dirs {
+ # Take note that the [file normalize] below has been noted to
+ # cause difficulties for the freewrap utility. See Bug 1072136.
+ # Until freewrap resolves the matter, one might work around the
+ # problem by disabling that branch.
if {[interp issafe]} {
set norm $i
} else {