Index: server/buildpkgs/tcc4tcl/build.sh ================================================================== --- server/buildpkgs/tcc4tcl/build.sh +++ server/buildpkgs/tcc4tcl/build.sh @@ -41,14 +41,14 @@ # TCC ships with object files in the way ${MAKE:-make} distclean >/dev/null 2>/dev/null bash ./configure --enable-shared --enable-threads --with-tcl="${TCLCONFIGDIR}" --prefix="${PLATDIR}" --libdir="${PLATDIR}" --bindir="${PLATDIR}" ${CONFIGUREEXTRA} - ${MAKE:-make} || exit 1 + ${MAKE:-make} PACKAGE_INSTALL_DIR="${PLATDIR}" || exit 1 - ${MAKE:-make} install || exit 1 + ${MAKE:-make} PACKAGE_INSTALL_DIR="${PLATDIR}" install || exit 1 ) || exit 1 # Create metadata ../create_teapot "${PLATDIR}/teapot.txt" "tcc4tcl" "${VERS}" "${SRCURL}" "${PLATFORM}" "Tcl 8.4" "tcc4tcl provides a Tcl binding to the TinyCC compiler. It allows dynamic compilation of C code from within a Tcl interpreter." exit 0