openbsd-ports/devel/nagelfar/patches/patch-lib_textsearch_examples_demo_tcl
stu f3952e2c90 Update to 1.2.5.
Install textsearch in the right place.
Better patches. Less file shenanigans.
2017-05-05 04:10:48 +00:00

17 lines
590 B
Plaintext

$OpenBSD: patch-lib_textsearch_examples_demo_tcl,v 1.2 2017/05/05 04:10:48 stu Exp $
Index: lib/textsearch/examples/demo.tcl
--- lib/textsearch/examples/demo.tcl.orig
+++ lib/textsearch/examples/demo.tcl
@@ -47,10 +47,7 @@ menu .m.f
menu .m.s
textSearch::searchMenu .m.s
-foreach dir {. tcl ../tcl} {
- if {![catch {set ch [open [file join $dir textsearch.tcl] r]}]} {
+ if {![catch {set ch [open [file join [file dirname [::tcl::pkgconfig get libdir,install]] share doc textsearch readme.txt] r]}]} {
$w insert end [read $ch]
close $ch
- break
}
-}