Skip to content

Commit

Permalink
[configure.ac] Only use AM_EXTRA_RECURSIVE_TARGETS when available (#1…
Browse files Browse the repository at this point in the history
…1877)

It's only available in automake 1.13+. Since we only use it for tests
we can just make it optional on systems with earlier automake.

Fixes #11809
  • Loading branch information
akoeplinger committed Dec 2, 2018
1 parent 0679e4b commit 793f24a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Expand Up @@ -20,8 +20,8 @@ AM_INIT_AUTOMAKE([1.9 dist-bzip2 tar-ustar no-dist-gzip foreign subdir-objects]

AC_CONFIG_HEADERS([config.h])
AM_MAINTAINER_MODE
AM_EXTRA_RECURSIVE_TARGETS([test])
AM_EXTRA_RECURSIVE_TARGETS([test-bundle])
m4_ifdef([AM_EXTRA_RECURSIVE_TARGETS], AM_EXTRA_RECURSIVE_TARGETS([test]))
m4_ifdef([AM_EXTRA_RECURSIVE_TARGETS], AM_EXTRA_RECURSIVE_TARGETS([test-bundle]))

API_VER=2.0
AC_SUBST(API_VER)
Expand Down

0 comments on commit 793f24a

Please sign in to comment.