Differences From Artifact [1bc3e7aaf5]:
- Executable file server/buildpkgs/sqlite3/build.sh — part of check-in [1ff15eb03f] at 2010-02-09 14:53:50 on branch trunk — Added sqlite3 compliation (user: rkeene, size: 1092) [annotate] [blame] [check-ins using]
To Artifact [c9cd8f667d]:
- Executable file server/buildpkgs/sqlite3/build.sh — part of check-in [bd843fe232] at 2010-02-09 15:58:37 on branch trunk — Fixed building sqlite3 on non-GNU platforms (user: rkeene, size: 1124) [annotate] [blame] [check-ins using]
︙ | |||
27 28 29 30 31 32 33 34 35 36 37 38 39 40 | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | + + | mkdir -p "${PLATDIR}" >/dev/null 2>/dev/null mkdir build cd build/ || exit 1 gzip -dc "../${SRC}" | tar -xf - cd "${BUILDDIR}" || exit 1 chmod +x tclconfig/install-sh bash ./configure --enable-shared --with-tcl="${TCLCONFIGDIR}" --prefix="${PLATDIR}" --libdir="${PLATDIR}" --bindir="${PLATDIR}" ${CONFIGUREEXTRA} ${MAKE:-make} || exit 1 ${MAKE:-make} install-binaries PKG_DIR='' || exit 1 |
︙ |