From: Mark Schouten Date: Fri, 25 Jul 2014 07:40:43 +0000 (+0200) Subject: This is a better way of stopping if libtoolstuff is missing X-Git-Tag: auth-3.4.0-rc1~24^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F1627%2Fhead;p=thirdparty%2Fpdns.git This is a better way of stopping if libtoolstuff is missing --- 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