From 5a6a7b7e930152e58aeb38b96502e76099f49569 Mon Sep 17 00:00:00 2001 From: psychon Date: Sat, 8 Jan 2011 11:33:06 +0000 Subject: [PATCH] Add some message to the end of autogen.sh The last thing autogen.sh is calling automake which is supposed to fail. Obviously, this doesn't look good to users so we should print some message that says everything worked as expected. git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@2257 726aef4b-f618-498e-8847-2d620e286838 --- autogen.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/autogen.sh b/autogen.sh index 600e5989..e11f3199 100755 --- a/autogen.sh +++ b/autogen.sh @@ -36,3 +36,6 @@ do_cmd $AUTOMAKE $AUTOMAKE_FLAGS || true test -f config.guess -a -f config.sub -a -f install-sh || die "Automake didn't install config.guess, config.sub and install-sh!" +echo "(Yes, automake is supposed to fail, ignore that)" +echo +echo "You may now run ./configure."