<div dir="ltr"><div><div>Hi Rich,<br><br></div>thanks for the patch. Committed as 63c3148f<br><br></div>David<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Nov 1, 2016 at 7:23 AM, Richard W.M. Jones <span dir="ltr"><<a href="mailto:rjones@redhat.com" target="_blank">rjones@redhat.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">gnulib tests sometimes fail for reasons which are everything to do<br>
with gnulib and nothing to do with Augeas.  Allow them to be skipped.<br>
<br>
Signed-off-by: Richard W.M. Jones <<a href="mailto:rjones@redhat.com">rjones@redhat.com</a>><br>
---<br>
 Makefile.am  |  6 +++++-<br>
 <a href="http://configure.ac" rel="noreferrer" target="_blank">configure.ac</a> | 10 ++++++++++<br>
 2 files changed, 15 insertions(+), 1 deletion(-)<br>
<br>
diff --git a/Makefile.am b/Makefile.am<br>
index 87d511a..c89e21e 100644<br>
--- a/Makefile.am<br>
+++ b/Makefile.am<br>
@@ -1,4 +1,8 @@<br>
-SUBDIRS=gnulib/lib src gnulib/tests tests man doc examples<br>
+SUBDIRS = gnulib/lib src<br>
+if ENABLE_GNULIB_TESTS<br>
+SUBDIRS += gnulib/tests<br>
+endif<br>
+SUBDIRS += tests man doc examples<br>
<br>
 ACLOCAL_AMFLAGS = -I gnulib/m4<br>
<br>
diff --git a/<a href="http://configure.ac" rel="noreferrer" target="_blank">configure.ac</a> b/<a href="http://configure.ac" rel="noreferrer" target="_blank">configure.ac</a><br>
index ce1ff70..5230efe 100644<br>
--- a/<a href="http://configure.ac" rel="noreferrer" target="_blank">configure.ac</a><br>
+++ b/<a href="http://configure.ac" rel="noreferrer" target="_blank">configure.ac</a><br>
@@ -107,6 +107,16 @@ AM_CONDITIONAL([USE_VERSION_<wbr>SCRIPT], [test "$VERSION_SCRIPT_FLAGS" != none])<br>
<br>
 gl_INIT<br>
<br>
+dnl Should we run the gnulib tests?<br>
+AC_MSG_CHECKING([if we should run the GNUlib tests])<br>
+AC_ARG_ENABLE([gnulib-tests],<br>
+    [AS_HELP_STRING([--disable-<wbr>gnulib-tests],<br>
+        [disable running GNU Portability library tests @<:@default=yes@:>@])],<br>
+        [ENABLE_GNULIB_TESTS="$<wbr>enableval"],<br>
+        [ENABLE_GNULIB_TESTS=yes])<br>
+AM_CONDITIONAL([ENABLE_<wbr>GNULIB_TESTS],[test "x$ENABLE_GNULIB_TESTS" = "xyes"])<br>
+AC_MSG_RESULT([$ENABLE_<wbr>GNULIB_TESTS])<br>
+<br>
 PKG_PROG_PKG_CONFIG<br>
 PKG_CHECK_MODULES([LIBXML], [libxml-2.0])<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
2.7.4<br>
<br>
</font></span></blockquote></div><br></div>