fix: obsolete warnings with autoconf >= 2.71
authorMichael Jeanson <mjeanson@efficios.com>
Mon, 4 Oct 2021 19:20:39 +0000 (15:20 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Mon, 4 Oct 2021 20:30:20 +0000 (16:30 -0400)
Disable 'obsolete' warnings when running autoreconf, on systems with
autoconf >= 2.71 the glib2 macros which we have no control over will
trigger warnings, which then confuses jenkins's compiler warnings
detection code and fails the jobs.

Change-Id: I000e1ac4badcaaed8035f2765ad2e128e7433b63
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
bootstrap

index 2bec3713512d2c4fab2371a3a66a5367bcb18c4a..52fc4d3cd9b9124ad6c9ce542d2fcbe1fa32efa6 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -5,4 +5,5 @@ if [ ! -d "config" ]; then
        mkdir config
 fi
 
-autoreconf -vi
+# Disable 'obsolete' warnings for AM_PATH_GLIB_2_0
+autoreconf -vif -W no-obsolete
This page took 0.02577 seconds and 4 git commands to generate.