Overview
Comment: | Preserve timestamps when copying buildsrc for kitsh |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
08115dbde5e76764f44ec9924c1e442f |
User & Date: | rkeene on 2016-04-08 15:50:28 |
Other Links: | manifest | tags |
Context
2016-04-08
| ||
16:03 | Updated to latest config.guess/config.sub from autoconf (includes musl fixes) check-in: 05ffe94d89 user: rkeene tags: trunk | |
15:50 | Preserve timestamps when copying buildsrc for kitsh check-in: 08115dbde5 user: rkeene tags: trunk | |
14:54 | Better check for patch command check-in: 9ff44d4252 user: rkeene tags: trunk | |
Changes
Modified kitsh/build.sh from [cb53c1165d] to [a050224c70].
︙ | ︙ | |||
32 33 34 35 36 37 38 | export ENABLECOMPRESSION rm -rf 'build' 'out' 'inst' mkdir 'out' 'inst' || exit 1 ( | | | 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | export ENABLECOMPRESSION rm -rf 'build' 'out' 'inst' mkdir 'out' 'inst' || exit 1 ( cp -rp 'buildsrc' 'build' cd "${BUILDDIR}" || exit 1 # Fix up archives that Tcl gets wrong for archive in ../../../tcl/inst/lib/dde*/tcldde*.a ../../../tcl/inst/lib/reg*/tclreg*.a; do if [ ! -f "${archive}" ]; then continue fi |
︙ | ︙ |