diff options
author | Lauri Kasanen <[email protected]> | 2013-02-22 22:25:58 +0200 |
---|---|---|
committer | Matt Turner <[email protected]> | 2013-02-22 13:15:14 -0800 |
commit | 0a82828ad53bfd8395614be48d33fc522d15f6c4 (patch) | |
tree | cdd81f1491391ff0298995ad838f61ee76632b5c /configure.ac | |
parent | cff862f90dbcf32395b0b2940c2446959314538a (diff) |
configure: Fix build with automake < 1.11
Commit 86d30dea3c13d29ef8d39bc18db63a0441051975 broke building with older
automake versions with this error:
Makefile:769: *** Recursive variable am__v_YACC_ references itself (eventually). Stop.
This patch fixes it. Fix stolen from xorg-macros.
Signed-off-by: Lauri Kasanen <[email protected]>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 1e11b4ea94e..3efef04aead 100644 --- a/configure.ac +++ b/configure.ac @@ -20,7 +20,8 @@ echo \#buildapi-variable-no-builddir >/dev/null # Support silent build rules, requires at least automake-1.11. Disable # by either passing --disable-silent-rules to configure or passing V=1 # to make -m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])], + [AC_SUBST([AM_DEFAULT_VERBOSITY], [1])]) m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) |