diff options
author | dkf <dkf@noemail.net> | 2001-01-12 09:54:16 (GMT) |
---|---|---|
committer | dkf <dkf@noemail.net> | 2001-01-12 09:54:16 (GMT) |
commit | 98a60749b566812a93a9e11a482a4da045f00e39 (patch) | |
tree | 3b1b5a338b67f6f0308d3e335eb7acb12fdc0f3e /tests/pkgMkIndex.test | |
parent | cbe44fe3d34cca00981c3f6a5111ff85932dcb6d (diff) | |
download | tcl-98a60749b566812a93a9e11a482a4da045f00e39.zip tcl-98a60749b566812a93a9e11a482a4da045f00e39.tar.gz tcl-98a60749b566812a93a9e11a482a4da045f00e39.tar.bz2 |
Fixes tests when spaces exist in install pathnames.
(Applies patch #103174 which fixes bug #119406.)
FossilOrigin-Name: fb4c5a7c4aedabdc61cd8844d39865d1debf6130
Diffstat (limited to 'tests/pkgMkIndex.test')
-rw-r--r-- | tests/pkgMkIndex.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/pkgMkIndex.test b/tests/pkgMkIndex.test index af0d5c6..76476f0 100644 --- a/tests/pkgMkIndex.test +++ b/tests/pkgMkIndex.test @@ -8,7 +8,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: pkgMkIndex.test,v 1.17 2000/07/19 21:40:57 ericm Exp $ +# RCS: @(#) $Id: pkgMkIndex.test,v 1.18 2001/01/12 09:54:16 dkf Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -165,7 +165,7 @@ proc pkgtest::createIndex { args } { if {[catch { file delete [file join $dirPath pkgIndex.tcl] - eval pkg_mkIndex $options $dirPath $patternList + eval pkg_mkIndex $options [list $dirPath] $patternList } err]} { return [list 1 $err] } |