From af863f8c7f1f1571df4f1172ec4e963fa654945e Mon Sep 17 00:00:00 2001 From: Ali Polatel Date: Wed, 26 May 2010 10:09:47 +0300 Subject: notmuch-deliver: Initial import --- contrib/notmuch-deliver/autogen.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 contrib/notmuch-deliver/autogen.sh (limited to 'contrib/notmuch-deliver/autogen.sh') diff --git a/contrib/notmuch-deliver/autogen.sh b/contrib/notmuch-deliver/autogen.sh new file mode 100755 index 0000000..2c660bc --- /dev/null +++ b/contrib/notmuch-deliver/autogen.sh @@ -0,0 +1,20 @@ +#!/bin/sh +# vim: set sw=4 et sts=4 tw=80 : + +die() { + echo "$@" >&2 + exit 1 +} + +echo ">>> libtoolize --copy --force --automake" +libtoolize --copy --force --automake || die "libtoolize failed" +echo ">>> rm -f config.cache" +rm -f config.cache +echo ">>> aclocal -I m4" +aclocal -I m4 || die "aclocal failed" +echo ">>> autoheader" +autoheader || die "autoheader failed" +echo ">>> autoconf" +autoconf || die "autoconf failed" +echo ">>> automake --foreign --add-missing --copy" +automake --foreign --add-missing --copy || die "automake failed" -- cgit v1.2.3