Index: tk/build.sh ================================================================== --- tk/build.sh +++ tk/build.sh @@ -58,19 +58,21 @@ # Remove previous directory's "tkConfig.sh" if found rm -f 'tkConfig.sh' cd "${BUILDDIR}/${dir}" || exit 1 - if [ "${dir}" != "win" ]; then + if [ "${dir}" = "win" ]; then # Statically link Tk to Tclkit if we are compiling for # Windows STATICTK="1" fi if [ "${STATICTK}" = "1" ]; then + echo "Running: ./configure --disable-shared --disable-symbols --prefix=\"${INSTDIR}\" --with-tcl=\"${TCLCONFIGDIR}\" ${CONFIGUREEXTRA}" ./configure --disable-shared --disable-symbols --prefix="${INSTDIR}" --with-tcl="${TCLCONFIGDIR}" ${CONFIGUREEXTRA} else + echo "Running: ./configure --enable-shared --disable-symbols --prefix=\"${INSTDIR}\" --with-tcl=\"${TCLCONFIGDIR}\" ${CONFIGUREEXTRA}" ./configure --enable-shared --disable-symbols --prefix="${INSTDIR}" --with-tcl="${TCLCONFIGDIR}" ${CONFIGUREEXTRA} fi ${MAKE:-make} || continue