Artifact 257c5a2cf3bb26010d69bc31fe424e47120eb676:
- Executable file build/autogen.sh — part of check-in [4d5caafa3d] at 2014-05-01 21:56:10 on branch trunk — Updated to generate files (user: rkeene, size: 407) [annotate] [blame] [check-ins using]
#! /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}" || continue mv "${file}.new" "${file}" done ) for file in config.guess config.sub install-sh; do rm -f "${file}" done aclocal -I aclocal autoconf automake -fca rm -rf autom4te.cache