src.ctf.lttng-live: remove some goto error-handling
[babeltrace.git] / bootstrap
index f6926cac5e8b2bd374f35f6554d7fd91877861b9..452813a46b4b4d7456f304a20d074b455a9051be 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -1,12 +1,14 @@
-#! /bin/sh
+#!/bin/sh
+# SPDX-License-Identifier: MIT
 
 set -x
-if [ ! -e config ]; then
+if [ ! -d "config" ]; then
        mkdir config
 fi
-aclocal -I m4
-libtoolize --force --copy
-autoheader
-automake --add-missing --copy
-autoconf
 
+# Run autoreconf with all warning types as errors except
+# for 'obsolete' because of AM_PATH_GLIB_2_0, we have to
+# list all categories because when 'all' is used, autoreconf
+# will drop all the other specified categories except 'error'
+# even if they start with 'no-'.
+autoreconf -vif -W cross,gnu,no-obsolete,override,portability,portability-recursive,extra-portability,syntax,unsupported,error
This page took 0.023171 seconds and 4 git commands to generate.