Differences From Artifact [da7da84b9f]:
- Executable file build/autogen.sh — part of check-in [9c68da7718] at 2014-05-01 21:49:33 on branch trunk — Initial skeleton with patch for tcltcc-0.4 (user: rkeene, size: 64) [annotate] [blame] [check-ins using]
To Artifact [875a46fcf2]:
- Executable file build/autogen.sh — part of check-in [131645cec4] at 2014-05-01 21:50:31 on branch trunk — Moved M4 fetching to autogen (user: rkeene, size: 384) [annotate] [blame] [check-ins using]
1 2 3 4 5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | + + + + + + + + + + + + + + + + + + | #! /bin/bash # Download latest copy of autoconf macros ( cd aclocal || exit 1 for file in shobj.m4 tcl.m4 versionscript.m4; do rm -f "${file}" wget -O "${file}.new" "http://rkeene.org/devel/autoconf/${file}.m4" || continue mv "${file}.new" "${file}" done ) aclocal -I aclocal autoconf rm -rf autom4te.cache for file in config.guess config.sub install-sh; do ... done |