From 3c034bfb135103d5837617512d3d96c7d5ead026 Mon Sep 17 00:00:00 2001 From: Michael Bergeron Date: Sat, 6 Oct 2018 13:16:57 -0700 Subject: [PATCH] Adjusted bootstrap to use bash The bootstrap script makes some assumptions about shells so I've set it to bash explicitly. It now also has some more coherent indentation as well as 'set -e' to quit immediately on error. Signed-off-by: Michael Bergeron --- bootstrap | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/bootstrap b/bootstrap index 1ae1e9b..aeaf97e 100755 --- a/bootstrap +++ b/bootstrap @@ -1,8 +1,17 @@ +#!/bin/bash + +set -e + rm -rf config.cache autom4te*.cache #autoreconf --install -case `uname` in Darwin*) glibtoolize --automake ;; - *) libtoolize --automake ;; esac +case `uname` in + Darwin*) + glibtoolize --automake ;; + *) + libtoolize --automake ;; +esac + aclocal autoconf autoheader