|
From: <ai...@us...> - 2014-03-12 23:39:24
|
Revision: 13051
http://sourceforge.net/p/plplot/code/13051
Author: airwin
Date: 2014-03-12 23:39:20 +0000 (Wed, 12 Mar 2014)
Log Message:
-----------
Fix typographical error that made "package require Pltcl" fail
under tclsh on the MinGW/MSYS platform.
This fix allows the test_tclsh_standard_examples target to work on
MinGW/MSYS. As a result, an epa_build of the build_plplot_lite target
using -DCOMPREHENSIVE_PLPLOT_TEST_INTERACTIVE=ON works for the very
first time on my MinGW/MSYS/Wine platform.
Modified Paths:
--------------
trunk/bindings/tcl/pkgIndex.tcl.in
Modified: trunk/bindings/tcl/pkgIndex.tcl.in
===================================================================
--- trunk/bindings/tcl/pkgIndex.tcl.in 2014-03-12 20:54:20 UTC (rev 13050)
+++ trunk/bindings/tcl/pkgIndex.tcl.in 2014-03-12 23:39:20 UTC (rev 13051)
@@ -48,7 +48,7 @@
if {![string compare -length $bLen $buildDir $pkgIndexDir]} then {
set searchdirs "../../dll"
} else {
- set searchdirs [list "@LIB_HARDDIR@../bin"]
+ set searchdirs [list "@LIB_HARDDIR@/../bin"]
}
}
#puts $searchdirs
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|