Overview
Comment: | Updated to not use broken pre-generated Makefiles |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e51ad4b533a686379cca0f79d60be4bd |
User & Date: | rkeene on 2011-10-03 19:04:35 |
Other Links: | manifest | tags |
Context
2011-10-03
| ||
19:08 | Updated to not use broken pre-generated Makefiles with Tk check-in: fb277571b4 user: rkeene tags: trunk | |
19:04 | Updated to not use broken pre-generated Makefiles check-in: e51ad4b533 user: rkeene tags: trunk | |
15:31 |
Updated to try to build Tk in the same sub-directory as Tcl first
Updated Tcl to try to build in the macosx directory first on Darwin check-in: a6a6c489dc user: rkeene tags: trunk | |
Changes
Modified tcl/build.sh from [e5d135d2c7] to [b1c6fc2088].
︙ | ︙ | |||
165 166 167 168 169 170 171 172 173 174 175 176 177 178 | exit 1 fi # Remove previous directory's "tclConfig.sh" if found rm -f 'tclConfig.sh' cd "${BUILDDIR}/${dir}" || exit 1 echo "Running: ./configure --disable-shared --with-encoding=utf-8 --prefix=\"${INSTDIR}\" ${CONFIGUREEXTRA}" ./configure --disable-shared --with-encoding=utf-8 --prefix="${INSTDIR}" ${CONFIGUREEXTRA} echo "Running: ${MAKE:-make}" ${MAKE:-make} || continue | > > > | 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 | exit 1 fi # Remove previous directory's "tclConfig.sh" if found rm -f 'tclConfig.sh' cd "${BUILDDIR}/${dir}" || exit 1 # Remove broken pre-generated Makfiles rm -f GNUmakefile Makefile makefile echo "Running: ./configure --disable-shared --with-encoding=utf-8 --prefix=\"${INSTDIR}\" ${CONFIGUREEXTRA}" ./configure --disable-shared --with-encoding=utf-8 --prefix="${INSTDIR}" ${CONFIGUREEXTRA} echo "Running: ${MAKE:-make}" ${MAKE:-make} || continue |
︙ | ︙ |