diff options
author | sebres <sebres@users.sourceforge.net> | 2019-01-21 02:21:11 (GMT) |
---|---|---|
committer | sebres <sebres@users.sourceforge.net> | 2019-01-21 02:21:11 (GMT) |
commit | 8f8efbe01114a7ce4a08211b4701377ef0fe49d7 (patch) | |
tree | ea92afd82ad56bd655b8b2ea62955eef675c49fe /win/tcl.m4 | |
parent | 6c7d5918b35d24ea7d54fcb9d836855843f581f7 (diff) | |
download | tcl-8f8efbe01114a7ce4a08211b4701377ef0fe49d7.zip tcl-8f8efbe01114a7ce4a08211b4701377ef0fe49d7.tar.gz tcl-8f8efbe01114a7ce4a08211b4701377ef0fe49d7.tar.bz2 |
avoid additional in-between path-segment "." in zip, some zip-programs (inclusive minizip) will insert this if used as path-parameter to compress
Diffstat (limited to 'win/tcl.m4')
-rw-r--r-- | win/tcl.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1270,7 +1270,7 @@ AC_DEFUN([SC_ZIPFS_SUPPORT], [ ZIP_PROG="$ac_cv_path_zip" AC_MSG_RESULT([$ZIP_PROG]) ZIP_PROG_OPTIONS="-rq" - ZIP_PROG_VFSSEARCH="." + ZIP_PROG_VFSSEARCH="*" AC_MSG_RESULT([Found INFO Zip in environment]) # Use standard arguments for zip else @@ -1278,7 +1278,7 @@ AC_DEFUN([SC_ZIPFS_SUPPORT], [ # We can use the locally distributed minizip instead ZIP_PROG="./minizip${EXEEXT_FOR_BUILD}" ZIP_PROG_OPTIONS="-o -r" - ZIP_PROG_VFSSEARCH="." + ZIP_PROG_VFSSEARCH="*" ZIP_INSTALL_OBJS="minizip${EXEEXT_FOR_BUILD}" AC_MSG_RESULT([No zip found on PATH building minizip]) fi |