(from bug-libtool)

* Ralf Wildenhues wrote on Sat, Jun 19, 2010 at 11:17:13AM CEST:
> I don't quite realize yet what's broken here, but with Autoconf 2.62
> (from FreeBSD /usr/local/bin), Libtool bootstrap does not work, see
> below.  Another bug is that the bootstrap script doesn't abort upon
> error, I'm going to fix that one right away now by adding 'set -e'.

Pushed as below.

2010-06-19  Ralf Wildenhues  <ralf.wildenh...@gmx.de>

        Let the bootstrap script fail upon errors.
        * bootstrap: Enable errexit.

diff --git a/bootstrap b/bootstrap
index 81ed4b0..410c983 100755
--- a/bootstrap
+++ b/bootstrap
@@ -24,6 +24,9 @@
 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 ####
 
+# Exit upon failure.
+set -e
+
 # It is okay for the bootstrap process to require unreleased autoconf
 # or automake, as long as any released libtool will work with at least
 # the newest stable versions of each.  Generally, newer versions offer

Reply via email to