From 0e264b575b6ede952032c15353b7550c82dd5716 Mon Sep 17 00:00:00 2001 From: tlegrand Date: Thu, 13 Sep 2007 15:13:15 +0000 Subject: [PATCH] removed --force-missing option for Automake: incompatible with the latest versions --- eo/tutorial/Templates/createEOproject.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/eo/tutorial/Templates/createEOproject.sh b/eo/tutorial/Templates/createEOproject.sh index 732e32d4..57915340 100755 --- a/eo/tutorial/Templates/createEOproject.sh +++ b/eo/tutorial/Templates/createEOproject.sh @@ -90,11 +90,14 @@ echo "Successfully created project $1 in $TargetDir!" echo "Start building the new project" -# building new project +### building new project with the Autotools #cd $TargetDir #aclocal || exit #autoheader || exit -#automake --add-missing --copy --gnu || exit ### forget uncompatible option: --force-missing +#automake --add-missing --copy --gnu || exit + +# !!!!! uncompatible option: --force-missing for the latest version of automake + #autoconf || exit #./configure || exit #make || exit