Overview
Comment: | Updated to include "fake-uname" in pkgs file |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 98b6dd903b04317a54315c6da23582f7c8d05ba6 |
User & Date: | rkeene on 2014-06-21 21:59:21 |
Other Links: | manifest | tags |
Context
2014-06-21
| ||
22:06 | Updated tcc4tcl to rely on Tcl 8.5 or newer check-in: ba02ddd48a user: rkeene tags: trunk | |
21:59 | Updated to include "fake-uname" in pkgs file check-in: 98b6dd903b user: rkeene tags: trunk | |
21:22 | Updated to latest tcc4tcl check-in: 759c5f1892 user: rkeene tags: trunk | |
Changes
Modified server/buildpkgs/Makefile from [091641af0c] to [10694ee869].
1 1 all: tclpkgs-src-current.tar.gz 2 2 3 3 tclpkgs-src-current.tar.gz: tclpkgs-src-current 4 4 tar -zcf tclpkgs-src-current.tar.gz tclpkgs-src-current 5 5 rm -rf tclpkgs-src-current 6 6 7 -tclpkgs-src-current: platform build_all.sh create_teapot common.sh */build.sh */patches 7 +tclpkgs-src-current: platform fake-uname build_all.sh create_teapot common.sh */build.sh */patches 8 8 rm -rf tclpkgs-src-current 9 9 mkdir tclpkgs-src-current 10 - cp -rp platform build_all.sh create_teapot common.sh certs.pem tclpkgs-src-current/ 10 + cp -rp platform fake-uname build_all.sh create_teapot common.sh certs.pem tclpkgs-src-current/ 11 11 for dir in */; do \ 12 12 if test ! -f "$$dir/build.sh"; then continue; fi; \ 13 13 mkdir "tclpkgs-src-current/$$dir"; \ 14 14 cp "$$dir/build.sh" "tclpkgs-src-current/$$dir"; \ 15 15 if test -d "$$dir/patches"; then cp -rp "$$dir/patches" "tclpkgs-src-current/$$dir"; fi; \ 16 16 done 17 17 find tclpkgs-src-current -name '.svn' | xargs rm -rf