summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@altlinux.org>2020-12-11 03:59:00 +0300
committerMark Wielaard <mark@klomp.org>2020-12-11 12:27:38 +0100
commit8ffada54afb4a9624a45eb71a60a9c1a401580d9 (patch)
treec3390037181844748e40c1e1b76d6429473f8818 /configure.ac
parentff38afe74aec87efbb98d54d3eec60e9babe11ce (diff)
downloadelfutils-8ffada54afb4a9624a45eb71a60a9c1a401580d9.tar.gz
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 <ldv@altlinux.org>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 2f7316e8..6c3e05bf 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