diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-09-10 13:24:22 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-09-10 13:24:22 (GMT) |
| commit | df2aa14a4b12e5a43e8e757268e95e153cc31fdb (patch) | |
| tree | 0b5a60a869d220251494b77350ebb331a90ea41e | |
| parent | aafb8f260959dba7316e70f8dfd6afcd1a9248d0 (diff) | |
| download | tcl-df2aa14a4b12e5a43e8e757268e95e153cc31fdb.zip tcl-df2aa14a4b12e5a43e8e757268e95e153cc31fdb.tar.gz tcl-df2aa14a4b12e5a43e8e757268e95e153cc31fdb.tar.bz2 | |
fix running package-tests on Windows, correct TCLSH_PROG in this case
| -rw-r--r-- | win/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index 392bd7a..4dbdbbd 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -786,7 +786,7 @@ test-packages: tcltest packages pkg=`basename $$i`; \ if [ -f $(PKG_DIR)/$$pkg/Makefile ]; then \ echo "Testing package '$$pkg'"; \ - ( cd $(PKG_DIR)/$$pkg; $(MAKE) "LD_LIBRARY_PATH=$$builddir:${LD_LIBRARY_PATH}" "TCL_LIBRARY=${TCL_BUILDTIME_LIBRARY}" "TCLLIBPATH=$$builddir/pkgs" test "TCLSH_PROG=$$builddir/tcltest"; ) \ + ( cd $(PKG_DIR)/$$pkg; $(MAKE) "LD_LIBRARY_PATH=$$builddir:${LD_LIBRARY_PATH}" "TCL_LIBRARY=${TCL_BUILDTIME_LIBRARY}" "TCLLIBPATH=$$builddir/pkgs" test "TCLSH_PROG=$$builddir/${TCLSH}"; ) \ fi; \ fi; \ done; \ |
