1
0
Fork 0

2008-06-11 Emmanuele Bassi <ebassi@openedhand.com>

* autogen.sh: Force overwriting when glib-gettextize is
	invoked by autogen.sh.
This commit is contained in:
Emmanuele Bassi 2008-06-11 09:36:35 +00:00
parent 1db672f29f
commit 7014b9ed2c

View file

@ -25,9 +25,15 @@ if test -z $GLIB_GETTEXTIZE; then
echo "*** No glib-gettextize ***"
exit 1
else
glib-gettextize || exit $?
glib-gettextize -f || exit $?
fi
autoreconf -v --install || exit $?
AUTORECONF=`which autoreconf`
if test -z $AUTORECONF; then
echo "*** No autoreconf found ***"
exit 1
else
autoreconf -v --install || exit $?
fi
./configure "$@" && echo "Now type 'make' to compile $PROJECT."