search for: 105b2e7

Displaying 1 result from an estimated 1 matches for "105b2e7".

Did you mean: 10527
2013 Feb 19
0
[PATCH] build: Only add 'serial-tests' for automake >= 1.12.
...er which they don't understand. The error is: configure.ac:27: error: option 'serial-tests' not recognized Use some m4 hackery to work around this. --- configure.ac | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 105b2e7..b0158c7 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,21 @@ m4_define([libguestfs_release], [11]) AC_INIT([libguestfs],libguestfs_major.libguestfs_minor.libguestfs_release) AC_CONFIG_AUX_DIR([build-aux]) -AM_INIT_AUTOMAKE([foreign serial-tests]) + +dnl Initialize automake. automak...