Skip to content

Commit

Permalink
Don't pack the dde/registry dll's any more for static builds. See: [h…
Browse files Browse the repository at this point in the history
  • Loading branch information
jan.nijtmans committed Aug 23, 2024
2 parents 126af6a + 3b98f0f commit ea845c8
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions win/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -546,8 +546,13 @@ ${TCL_ZIP_FILE}: ${ZIP_INSTALL_OBJS} ${DDE_DLL_FILE} ${REG_DLL_FILE}
@( \
$(COPY) -a $(TOP_DIR)/library/* ${TCL_VFS_PATH}; \
$(COPY) -a ${TCL_VFS_PATH}/manifest.txt ${TCL_VFS_PATH}/pkgIndex.tcl; \
$(COPY) ${DDE_DLL_FILE} ${TCL_VFS_PATH}/dde; \
$(COPY) ${REG_DLL_FILE} ${TCL_VFS_PATH}/registry; \
if test "${ZIPFS_BUILD}" != "2" ; then \
$(COPY) ${DDE_DLL_FILE} ${TCL_VFS_PATH}/dde; \
$(COPY) ${REG_DLL_FILE} ${TCL_VFS_PATH}/registry; \
else \
rm -rf ${TCL_VFS_PATH}/dde; \
rm -rf ${TCL_VFS_PATH}/registry; \
fi \
)
(zip=`(realpath '${NATIVE_ZIP}' || readlink -m '${NATIVE_ZIP}') 2>/dev/null || \
(echo '${NATIVE_ZIP}' | sed "s?^\./?$$(pwd)/?")`; \
Expand Down

0 comments on commit ea845c8

Please sign in to comment.