Differences From Artifact [01ca528618]:
- Executable file autogen.sh — part of check-in [a68d12f98b] at 2011-09-09 14:09:13 on branch trunk — Updated to use simpler and more portable build system (user: rkeene, size: 104) [annotate] [blame] [check-ins using]
- Executable file build/autogen.sh — part of check-in [43aebb6a2b] at 2011-09-09 14:20:33 on branch trunk — Updated to support release build system (user: rkeene, size: 104) [annotate] [blame] [check-ins using]
To Artifact [3d66c1a312]:
- Executable file build/autogen.sh — part of check-in [66b966ddc3] at 2014-12-13 22:52:03 on branch trunk — Updated to latest autoconf macros (user: rkeene, size: 337) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 | #! /bin/bash cat aclocal/*.m4 > aclocal.m4 || exit 1 autoconf || exit 1 rm -rf autom4te.cache/ exit 0 | > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #! /bin/bash ( mkdir aclocal >/dev/null 2>/dev/null cd aclocal || exit 1 for file in shobj.m4 tcl.m4; do rm -f "${file}" wget -O "${file}.new" "http://rkeene.org/devel/autoconf/${file}" || continue mv "${file}.new" "${file}" done ) cat aclocal/*.m4 > aclocal.m4 || exit 1 autoconf || exit 1 rm -rf autom4te.cache/ exit 0 |