diff options
author | hypnotoad <yoda@etoyoc.com> | 2018-11-19 23:49:56 (GMT) |
---|---|---|
committer | hypnotoad <yoda@etoyoc.com> | 2018-11-19 23:49:56 (GMT) |
commit | 52768f711a4af0c3539092e2718c1d346a20a83a (patch) | |
tree | 22a79c6322e36e00b0e32bab85a190d83dd1185d /unix/Makefile.in | |
parent | 1fae54c8c004d072d62e3d867ef4e66b238d0bcd (diff) | |
download | tcl-52768f711a4af0c3539092e2718c1d346a20a83a.zip tcl-52768f711a4af0c3539092e2718c1d346a20a83a.tar.gz tcl-52768f711a4af0c3539092e2718c1d346a20a83a.tar.bz2 |
Fix for ticket [9cc1db9fb675bf64dfc775372fab1f697e46bb44]
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 4dea6c1..270cff7 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -689,10 +689,10 @@ ${TCL_ZIP_FILE}: ${ZIP_INSTALL_OBJS} ${LIB_FILE}: ${STUB_LIB_FILE} ${OBJS} ${TCL_ZIP_FILE} rm -f $@ @MAKE_LIB@ -ifeq (${ZIPFS_BUILD},1) - cat ${TCL_ZIP_FILE} >> ${LIB_FILE} - ${NATIVE_ZIP} -A ${LIB_FILE} -endif + @if test "${ZIPFS_BUILD}" = "1" ; then \ + cat ${TCL_ZIP_FILE} >> ${LIB_FILE}; \ + ${NATIVE_ZIP} -A ${LIB_FILE}; \ + fi ${STUB_LIB_FILE}: ${STUB_LIB_OBJS} @if [ "x${LIB_FILE}" = "xlibtcl${MAJOR_VERSION}.${MINOR_VERSION}.dll" ] ; then \ |