isync

mailbox synchronization program
git clone https://git.code.sf.net/p/isync/isync
Log | Files | Refs | README | LICENSE

commit 146945d460edf0974f943845d801951894b7f8a2
parent be311495f7f3e0371bc137ebdd15c6e6118bd81f
Author: Michael Elkins <me@mutt.org>
Date:   Wed, 20 Dec 2000 22:10:45 +0000

added autogen.sh to regenerate the build environment

Diffstat:
Aautogen.sh | 15+++++++++++++++
1 file changed, 15 insertions(+), 0 deletions(-)

diff --git a/autogen.sh b/autogen.sh @@ -0,0 +1,15 @@ +#!/bin/sh +# $Id$ +aclocal +if test $? -ne 0; then + exit +fi +automake --add-missing +if test $? -ne 0; then + exit +fi +autoconf +if test $? -ne 0; then + exit +fi +./configure $@