Overview
| Comment: | Updated to not keep backup files when patching |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
f0f28f847fc58faea0f10600217e61e4 |
| User & Date: | rkeene on 2016-03-28 14:42:55.483 |
| Other Links: | manifest | tags |
Context
|
2016-03-28
| ||
| 14:48 | Updated to try harder to determine the cross-tools prefix check-in: ade7e2c795 user: rkeene tags: trunk | |
| 14:42 | Updated to not keep backup files when patching check-in: f0f28f847f user: rkeene tags: trunk | |
|
2016-03-20
| ||
| 08:39 | tcc4tcl 0.25 check-in: 63577d4012 user: rkeene tags: trunk, 0.25 | |
Changes
Modified build/pre.sh
from [574316b038]
to [90dbaeeee6].
| ︙ | ︙ | |||
37 38 39 40 41 42 43 |
bzip2 -dc "tcc-${tcc_version}.tar.bz2" | tar -xf -
rm -f "tcc-${tcc_version}.tar.bz2"
## Apply patches
for patchfile in ../build/tcc-patches/${tcc_version}/*.diff; do
| | | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
bzip2 -dc "tcc-${tcc_version}.tar.bz2" | tar -xf -
rm -f "tcc-${tcc_version}.tar.bz2"
## Apply patches
for patchfile in ../build/tcc-patches/${tcc_version}/*.diff; do
( cd * && patch --no-backup-if-mismatch -p1 ) < "${patchfile}"
done
rm -rf ../tcc
mkdir ../tcc || exit 1
mv */* ../tcc/
)
rm -rf __TMP__
|