diff options
author | sebres <sebres@users.sourceforge.net> | 2018-11-23 11:59:53 (GMT) |
---|---|---|
committer | sebres <sebres@users.sourceforge.net> | 2018-11-23 11:59:53 (GMT) |
commit | 813764c458ec766131b971e45d7ea5531e21f65b (patch) | |
tree | a100c9dd9e593522c01bde593508c0a4a650ac4e /unix | |
parent | a694d92cbd24f1420fb67564e12fb1420a86ab9f (diff) | |
download | tcl-813764c458ec766131b971e45d7ea5531e21f65b.zip tcl-813764c458ec766131b971e45d7ea5531e21f65b.tar.gz tcl-813764c458ec766131b971e45d7ea5531e21f65b.tar.bz2 |
make/configure review: normalizes the latest fixes across unix/win
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile.in | 5 | ||||
-rw-r--r-- | unix/tcl.m4 | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index ebb7bc7..8dfb946 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -683,9 +683,8 @@ ${TCL_ZIP_FILE}: ${ZIP_INSTALL_OBJS} cp -a $(TOP_DIR)/library/* ${TCL_VFS_PATH} cp -a ${TCL_VFS_PATH}/manifest.txt ${TCL_VFS_PATH}/pkgIndex.tcl find ${TCL_VFS_ROOT} -type d -empty -delete - echo "${NATIVE_ZIP} ${ZIP_PROG_OPTIONS} ../${TCL_ZIP_FILE} ${ZIP_PROG_VFSSEARCH}" - (zip=`readlink -m '${NATIVE_ZIP}'`; \ - cd ${TCL_VFS_ROOT} && $$zip ${ZIP_PROG_OPTIONS} ../${TCL_ZIP_FILE} ${ZIP_PROG_VFSSEARCH} && cd ..) + (zip=`readlink -m '${NATIVE_ZIP}'`; cd ${TCL_VFS_ROOT} && \ + $$zip ${ZIP_PROG_OPTIONS} ../${TCL_ZIP_FILE} ${ZIP_PROG_VFSSEARCH} && cd ..) # The following target is configured by autoconf to generate either a shared # library or non-shared library for Tcl. diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 0d95f57..2f114d7 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -3011,7 +3011,7 @@ AC_DEFUN([SC_ZIPFS_SUPPORT], [ done ]) if test -f "$ac_cv_path_zip" ; then - ZIP_PROG="$ac_cv_path_zip " + ZIP_PROG="$ac_cv_path_zip" AC_MSG_RESULT([$ZIP_PROG]) ZIP_PROG_OPTIONS="-rq" ZIP_PROG_VFSSEARCH="." |