From edff5d5d33ed01b6619c8f2a11b182fedb9573a4 Mon Sep 17 00:00:00 2001 From: Mark Schouten Date: Fri, 25 Jul 2014 09:40:43 +0200 Subject: [PATCH] This is a better way of stopping if libtoolstuff is missing --- bootstrap | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bootstrap b/bootstrap index 76f591762e..2ba8bef1c6 100755 --- a/bootstrap +++ b/bootstrap @@ -1,5 +1,4 @@ #!/bin/sh -type libtool 2>&1 > /dev/null -if [ $? -gt 0 ]; then echo "Missing required libtool"; exit 1; fi +set -e autoreconf -i automake --add-missing -- 2.47.2