Skip to content

Commit

Permalink
fix configure.ac warning and use system automake
Browse files Browse the repository at this point in the history
... there should always be an 'automake' alias, and we haven't had an
"unsupported" version in probably ten years. hopefully this stops systems with
upgraded automakes from breaking every time.
  • Loading branch information
dormando committed Nov 18, 2015
1 parent a66b28a commit 543959a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ $AUTOHEADER || exit 1

echo "automake..."
if test x$AUTOMAKE = x; then
AUTOMAKE=`locate_binary automake-1.14 automake-1.13 automake-1.12 automake-1.11 automake-1.10 automake-1.9 automake-1.7`
AUTOMAKE=`locate_binary automake-1.14 automake-1.13 automake-1.12 automake-1.11 automake-1.10 automake-1.9 automake-1.7 automake`
if test x$AUTOMAKE = x; then
die "Did not find a supported automake"
fi
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ m4_include([m4/c99-backport.m4])
AC_INIT(memcached, VERSION_NUMBER, [email protected])
AC_CANONICAL_SYSTEM
AC_CONFIG_SRCDIR(memcached.c)
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
AM_INIT_AUTOMAKE
AM_CONFIG_HEADER(config.h)

AC_PROG_CC
Expand Down

0 comments on commit 543959a

Please sign in to comment.