Differences From
Artifact [1bc3e7aaf5]:
27 27 mkdir -p "${PLATDIR}" >/dev/null 2>/dev/null
28 28 mkdir build
29 29
30 30 cd build/ || exit 1
31 31
32 32 gzip -dc "../${SRC}" | tar -xf -
33 33 cd "${BUILDDIR}" || exit 1
34 +
35 + chmod +x tclconfig/install-sh
34 36
35 37 bash ./configure --enable-shared --with-tcl="${TCLCONFIGDIR}" --prefix="${PLATDIR}" --libdir="${PLATDIR}" --bindir="${PLATDIR}" ${CONFIGUREEXTRA}
36 38
37 39 ${MAKE:-make} || exit 1
38 40
39 41 ${MAKE:-make} install-binaries PKG_DIR='' || exit 1
40 42
41 43 rm -f "${PLATDIR}"/*.a
42 44 ) || exit 1
43 45
44 46 ../create_teapot "${PLATDIR}/teapot.txt" "sqlite3" "${VERS}" "${SRCURL}" "${PLATFORM}" "Tcl 8.4" "SQLite"
45 47
46 48 exit 0