aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2012-10-04 15:55:43 -0700
committerBen Pfaff <blp@nicira.com>2012-10-04 16:28:10 -0700
commit4210c33bdbf4c05bf38e1eebd930c88eca203412 (patch)
tree2a4a911c00f1efb6f163583788c3f29c299943a8 /configure.ac
parent8c8c0f3a9662f612752beaf67c68a25722f496a9 (diff)
Avoid requiring autom4te when it won't necessarily be needed.
Commit 7fd3e43db07 (tests: Allow environment specified autom4te.) added a requirement for Autom4te without anyone noticing it in advance. This caused a build failure in the XenServer DDK, which doesn't have Autom4te. Since Autom4te is only needed if the testsuite is modified, this commit makes it optional. (Autom4te is part of Autoconf.) Signed-off-by: Ben Pfaff <blp@nicira.com> Acked-by: Ethan Jackson <ethan@nicira.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 1 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 10b214e6..9ec55486 100644
--- a/configure.ac
+++ b/configure.ac
@@ -34,10 +34,7 @@ if test "$PERL" = no; then
AC_MSG_ERROR([Perl interpreter not found in $PATH or $PERL.])
fi
-AC_PATH_PROG([AUTOM4TE], autom4te, no)
-if test "$AUTOM4TE" = no; then
- AC_MSG_ERROR([autom4te not found in $PATH or $AUTOM4TE.])
-fi
+AM_MISSING_PROG([AUTOM4TE], [autom4te])
AC_USE_SYSTEM_EXTENSIONS
AC_C_BIGENDIAN