From ae1cade4ab91eb1d13281058a730c279cecb5e75 Mon Sep 17 00:00:00 2001 From: Dodji Seketeli Date: Thu, 27 Oct 2016 16:05:35 +0200 Subject: [PATCH] Bug 20740 Broken check for dwarf_getalt in configure.ac There is a missing space around the "=" operator in the conditional expression of the test below: if test x$FOUND_DWARF_GETALT_IN_LIBDW=xyes; then AC_DEFINE([LIBDW_HAS_DWARF_GETALT], 1, [Defined if libdw has the function dwarf_getalt]) fi This patch fixes that. Oops. * configure.ac: Add missing spaces around the "=" of a conditional expression. Signed-off-by: Dodji Seketeli --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index fdfcbf69..402bbc6f 100644 --- a/configure.ac +++ b/configure.ac @@ -170,7 +170,7 @@ if test x$DW_LIBS = x; then AC_MSG_ERROR([could not find elfutils dwarf library installed]) fi -if test x$FOUND_DWARF_GETALT_IN_LIBDW=xyes; then +if test x$FOUND_DWARF_GETALT_IN_LIBDW = xyes; then AC_DEFINE([LIBDW_HAS_DWARF_GETALT], 1, [Defined if libdw has the function dwarf_getalt]) fi