#!/bin/sh # # autogen.sh glue for CMU Cyrus IMAP # $Id: autogen.sh,v 1.1 2001/10/13 23:29:41 hmh Exp $ # # Requires: automake, autoconf, dpkg-dev set -e # Refresh GNU autotools toolchain. aclocal -I cmulocal autoheader #automake --verbose --foreign --add-missing # The automake package already links config.sub/guess to /usr/share/misc/ for i in config.guess config.sub missing install-sh mkinstalldirs ; do test -r /usr/share/automake/${i} && cp -f /usr/share/automake/${i} . chmod 755 ${i} done autoconf exit 0