Artifact 95541498bcc783dd6d1d9d22c6839bd658edb8c6:
- Executable file build/autogen.sh — part of check-in [07b3ee6214] at 2014-05-01 22:58:06 on branch trunk — Updated to create initial directory (user: rkeene, size: 445) [annotate] [blame] [check-ins using] [more...]
#! /bin/bash # Download latest copy of autoconf macros ( mkdir aclocal >/dev/null 2>/dev/null 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