summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--library/package.tcl8
1 files changed, 5 insertions, 3 deletions
diff --git a/library/package.tcl b/library/package.tcl
index 6cbaf67..4fa50c3 100644
--- a/library/package.tcl
+++ b/library/package.tcl
@@ -3,7 +3,7 @@
# utility procs formerly in init.tcl which can be loaded on demand
# for package management.
#
-# RCS: @(#) $Id: package.tcl,v 1.3 1999/04/20 02:08:38 surles Exp $
+# RCS: @(#) $Id: package.tcl,v 1.4 1999/04/20 02:20:41 surles Exp $
#
# Copyright (c) 1991-1993 The Regents of the University of California.
# Copyright (c) 1994-1998 Sun Microsystems, Inc.
@@ -443,8 +443,10 @@ proc tclPkgUnknown {name version {exact {}}} {
foreach file [glob -nocomplain [file join [lindex $auto_path $i] \
* pkgIndex.tcl]] {
set dir [file dirname $file]
- if {[file readable $file] && [catch {source $file} msg]} {
- tclLog "error reading package index file $file: $msg"
+ if {[file readable $file]} {
+ if {[catch {source $file} msg]} {
+ tclLog "error reading package index file $file: $msg"
+ }
}
}
}