From: Dmitry V. Levin Date: Fri, 11 Dec 2020 00:59:00 +0000 (+0300) Subject: configure.ac: fix typo in error diagnostics X-Git-Tag: elfutils-0.183~60 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8ffada54afb4a9624a45eb71a60a9c1a401580d9;p=thirdparty%2Felfutils.git configure.ac: fix typo in error diagnostics Fixes: da855fc9c ("Support building when fts and obstack aren't part of libc") Signed-off-by: Dmitry V. Levin --- diff --git a/ChangeLog b/ChangeLog index 71e80a251..563af0d2a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2020-12-11 Dmitry V. Levin + + * configure.ac (AC_MSG_FAILURE): Fix typo. + 2020-11-30 Dmitry V. Levin * configure.ac (LIBDEBUGINFOD_SONAME): New AC_SUBST variable. diff --git a/configure.ac b/configure.ac index 2f7316e8f..6c3e05bfd 100644 --- a/configure.ac +++ b/configure.ac @@ -559,7 +559,7 @@ saved_LIBS="$LIBS" AC_SEARCH_LIBS([_obstack_free], [obstack]) LIBS="$saved_LIBS" case "$ac_cv_search__obstack_free" in - no) AC_MSG_FAILURE([failed to find obstack_free]) ;; + no) AC_MSG_FAILURE([failed to find _obstack_free]) ;; -l*) obstack_LIBS="$ac_cv_search__obstack_free" ;; *) obstack_LIBS= ;; esac