diff --git a/bootstrap.sh b/bootstrap.sh
index 02392eb5ccb1ba10ab6900d982a1c768ee09657b..9bf8377d164bc0d9b862ac700f3200428077888b 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -16,7 +16,7 @@ then
 	check_for_app autoconf259
 	check_for_app autoheader259
 	check_for_app automake19
-
+	echo "Generating the configure script ..."
 	aclocal19 2>/dev/null
 	autoconf259
 	autoheader259
@@ -29,9 +29,11 @@ else
 	check_for_app autoconf
 	check_for_app autoheader
 	check_for_app automake
-
+	echo "Generating the configure script ..."
 	aclocal 2>/dev/null
 	autoconf
 	autoheader
 	automake --add-missing --copy 2>/dev/null
 fi
+
+exit 0