blob: 408772f1a6d073baf3f42a043beebaa60c99ea2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
From 00f8160e2d52e8df57744c3b02ddda3f8a65d149 Mon Sep 17 00:00:00 2001
From: "jan.nijtmans" <nijtmans@users.sourceforge.net>
Date: Sat, 24 Nov 2018 14:59:04 +0000
Subject: [PATCH] If a pkgIndex file is encountered which produces an error,
continue. This shoud fix the Travis build for 9.0 (But same fix should be in
8.7 as well)
---
library/package.tcl | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/library/package.tcl b/library/package.tcl
index c72fbfbbe41..974cbf07956 100644
--- a/library/package.tcl
+++ b/library/package.tcl
@@ -493,7 +493,8 @@ proc tclPkgUnknown {name args} {
# $file was not readable; silently ignore
continue
} on error msg {
- tclLog "error reading package index file $file: $msg"
+ # $file is not usable; silently ignore
+ continue
} on ok {} {
set procdDirs($dir) 1
}
@@ -511,7 +512,8 @@ proc tclPkgUnknown {name args} {
# $file was not readable; silently ignore
continue
} on error msg {
- tclLog "error reading package index file $file: $msg"
+ # $file is not usable; silently ignore
+ continue
} on ok {} {
set procdDirs($dir) 1
}
@@ -595,7 +597,8 @@ proc tcl::MacOSXPkgUnknown {original name args} {
# $file was not readable; silently ignore
continue
} on error msg {
- tclLog "error reading package index file $file: $msg"
+ # $file is not usable; silently ignore
+ continue
} on ok {} {
set procdDirs($dir) 1
}
|