From 6cdda15d462f30fcd24eda693ad5e284d60eb700 Mon Sep 17 00:00:00 2001 From: Cedric Girard Date: Thu, 17 Mar 2011 14:39:06 +0100 Subject: [PATCH] modified autogen to work with intltool newer version and to not run configure --- autogen.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/autogen.sh b/autogen.sh index 223f514..84b516f 100755 --- a/autogen.sh +++ b/autogen.sh @@ -44,13 +44,13 @@ echo "Running libtoolize, please ignore non-fatal messages...." echo n | libtoolize --copy --force || exit; echo; +echo "Running intltoolize...." +echo n | intltoolize --copy --force || exit; +echo; + aclocal || exit; autoheader || exit; automake --add-missing --copy; autoconf || exit; automake || exit; -echo "Running ./configure $@" -echo; -./configure $@ -