Differences From Artifact [b819ea7b3f]:
- Executable file tk/build.sh — part of check-in [a49ee9121f] at 2011-03-03 05:01:51 on branch trunk — Added support for disabling "visibility=hidden" when building KitDLL (user: rkeene, size: 5886) [annotate] [blame] [check-ins using]
To Artifact [e21d739f84]:
- Executable file
tk/build.sh
— part of check-in
[84e5f3847a]
at
2011-03-16 17:23:07
on branch trunk
— Updated to pull tarballs from Fossil rather than zip files, as these preserve executable permissions
Updated to pull Tcl and Tk from "core.tcl.tk" rather than from local mirror (user: rkeene, size: 5880) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
40 41 42 43 44 45 46 | CVSTAG="trunk" fi export CVSTAG ( cd src || exit 1 | | > | | | > > > > < < < | < | | 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | CVSTAG="trunk" fi export CVSTAG ( cd src || exit 1 rm -f "tmp-tk.tar.gz" wget -O "tmp-tk.tar.gz" "http://core.tcl.tk/tk/tarball/tk-${CVSTAG}.tar.gz?uuid=${CVSTAG}" || rm -f 'tmp-tk.tar.gz' gzip -dc "tmp-tk.tar.gz" | tar -xf - rm -f "tmp-tk.tar.gz" if [ -d "tk-${CVSTAG}.tar" ]; then rm -rf "tk-${CVSTAG}" mv "tk-${CVSTAG}.tar" "tk-${CVSTAG}" fi rm -rf "tk${TCLVERS}" mv "tk-${CVSTAG}" "tk${TCLVERS}" tar -cf - "tk${TCLVERS}" | gzip -c > "../${SRC}" rm -f "tmp-tk.tar.gz" rm -rf "tk-${CVSTAG}" rm -rf "tk${TCLVERS}" ) else rm -f "${SRC}.tmp" wget -O "${SRC}.tmp" "${SRCURL}" || exit 1 mv "${SRC}.tmp" "${SRC}" |
︙ | ︙ |