Artifact f9bb8ef46730e21055e0a835bed5687c3b3acedd:
- Executable file build/autogen.sh — part of check-in [9e821bdcac] at 2014-12-13 23:02:29 on branch trunk — Updated to only update remote files if requested (user: rkeene, size: 380) [annotate] [blame] [check-ins using]
#! /bin/bash if [ "$1" = '--update' ]; then ( 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 ) fi cat aclocal/*.m4 > aclocal.m4 || exit 1 autoconf || exit 1 rm -rf autom4te.cache/ exit 0