Artifact ID: | 1f8152cad98ce02b8e556c6f9972226ff6f51be9 |
---|---|
Ticket: | f75d036a1431f45fb9ee5863df6168d75b7e2f93
build tk on unix even when no cross-compiler installed |
User & Date: | anonymous on 2016-07-16 13:53:50 |
- Change comment to:
tk/win/configure now errors if it can't find a cross-compiler, causing kitcreator to give up.
--- tk/build.sh
+++ tk/build.sh
@@ -200,14 +200,14 @@
fi
fi
if [ "${STATICTK}" = "1" ]; then
echo "Running: ./configure --disable-shared --disable-symbols --prefix=\"${INSTDIR}\" --libdir=\"${INSTDIR}/lib\" --with-tcl=\"${TCLCONFIGDIR}\" ${CONFIGUREEXTRA}"
- ./configure --disable-shared --disable-symbols --prefix="${INSTDIR}" --libdir="${INSTDIR}/lib" --with-tcl="${TCLCONFIGDIR}" ${CONFIGUREEXTRA}
+ ./configure --disable-shared --disable-symbols --prefix="${INSTDIR}" --libdir="${INSTDIR}/lib" --with-tcl="${TCLCONFIGDIR}" ${CONFIGUREEXTRA} || continue
else
echo "Running: ./configure --enable-shared --disable-symbols --prefix=\"${INSTDIR}\" --libdir=\"${INSTDIR}/lib\" --with-tcl=\"${TCLCONFIGDIR}\" ${CONFIGUREEXTRA}"
- ./configure --enable-shared --disable-symbols --prefix="${INSTDIR}" --libdir="${INSTDIR}/lib" --with-tcl="${TCLCONFIGDIR}" ${CONFIGUREEXTRA}
+ ./configure --enable-shared --disable-symbols --prefix="${INSTDIR}" --libdir="${INSTDIR}/lib" --with-tcl="${TCLCONFIGDIR}" ${CONFIGUREEXTRA} || continue
fi
echo "Running: ${MAKE:-make}"
${MAKE:-make} || (
# Workaround a bug in Tk on FreeBSD 8.1: - Change foundin to "trunk"
- Change login to "anonymous"
- Change private_contact to "cb02a4a25e8da92f2790bc307bf01ef24ce6053e"
- Change severity to "Important"
- Change status to "Open"
- Change title to:
build tk on unix even when no cross-compiler installed
- Change type to "Code Defect"