diff options
| author | apnadkarni <apnmbx-wits@yahoo.com> | 2023-10-08 13:44:54 (GMT) |
|---|---|---|
| committer | apnadkarni <apnmbx-wits@yahoo.com> | 2023-10-08 13:44:54 (GMT) |
| commit | 1366e9444caa38d97e21abfcb7e87f69923a4e94 (patch) | |
| tree | 1a3bb592de626ab4737d4f53fdcd5bdebdc737f2 | |
| parent | cacba66bbcd0f797a0178aeefb1974709a0d9022 (diff) | |
| download | tcl-1366e9444caa38d97e21abfcb7e87f69923a4e94.zip tcl-1366e9444caa38d97e21abfcb7e87f69923a4e94.tar.gz tcl-1366e9444caa38d97e21abfcb7e87f69923a4e94.tar.bz2 | |
Start on fixing Unix testing of zipfs configs
| -rw-r--r-- | unix/Makefile.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index f21c4af..c52f622 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -878,9 +878,14 @@ topDirName: # tcltest executable gets the build directory burned into its ld search path. # This keeps tcltest from picking up an already installed version of the Tcl # library. +ifeq ($(ZIPFS_BUILD), 0) SHELL_ENV = @LD_LIBRARY_PATH_VAR@=`pwd`:${@LD_LIBRARY_PATH_VAR@} \ TCLLIBPATH="@abs_builddir@/pkgs" \ TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}" +else +SHELL_ENV = @LD_LIBRARY_PATH_VAR@=`pwd`:${@LD_LIBRARY_PATH_VAR@} \ + TCLLIBPATH="@abs_builddir@/pkgs" +endif ${TCLTEST_EXE}: ${TCLTEST_OBJS} ${TCL_LIB_FILE} ${TCL_STUB_LIB_FILE} ${BUILD_DLTEST} $(MAKE) tcltest-real LIB_RUNTIME_DIR="`pwd`" |
