Overview
Comment: | Updated to install regardless of whether "dtplite" is available or not. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
bcecd323e5e4fa7601127c389a852a2c |
User & Date: | rkeene on 2011-09-09 18:01:29 |
Other Links: | manifest | tags |
Context
2011-09-09
| ||
18:02 | Fixed extraneous warning check-in: 76e3414ae6 user: rkeene tags: trunk | |
18:01 | Updated to install regardless of whether "dtplite" is available or not. check-in: bcecd323e5 user: rkeene tags: trunk | |
15:31 | Added CTk check-in: fe053aac46 user: rkeene tags: trunk | |
Changes
Modified server/buildpkgs/Tkimg/build.sh from [27c36f1547] to [a2eba5fa07].
︙ | ︙ | |||
36 37 38 39 40 41 42 43 44 45 46 47 48 49 | mkdir -p "${INSTDIR}" >/dev/null 2>/dev/null mkdir build cd build/ || exit 1 gzip -dc "../${SRC}" | tar -xf - cd "${BUILDDIR}" || exit 1 INSTDIR="${INSTROOT}/__TMP__/${PLATFORM}" bash ./configure --enable-shared --with-tcl="${TCLCONFIGDIR}" --with-tk="${tkdir}" --prefix="${INSTDIR}" --libdir="${INSTDIR}" --bindir="${INSTDIR}" ${CONFIGUREEXTRA} ${MAKE:-make} || exit 1 | > > > > > > | 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | mkdir -p "${INSTDIR}" >/dev/null 2>/dev/null mkdir build cd build/ || exit 1 gzip -dc "../${SRC}" | tar -xf - cd "${BUILDDIR}" || exit 1 ## Apply simple fix-ups ### Remove references to "dtplite", we don't need it. sed 's@dtplite@true@g' Makefile.in > Makefile.in.new cat Makefile.in.new > Makefile.in rm -f Makefile.in.new INSTDIR="${INSTROOT}/__TMP__/${PLATFORM}" bash ./configure --enable-shared --with-tcl="${TCLCONFIGDIR}" --with-tk="${tkdir}" --prefix="${INSTDIR}" --libdir="${INSTDIR}" --bindir="${INSTDIR}" ${CONFIGUREEXTRA} ${MAKE:-make} || exit 1 |
︙ | ︙ |