Bug 20740 Broken check for dwarf_getalt in configure.ac
authorDodji Seketeli <dodji@redhat.com>
Thu, 27 Oct 2016 14:05:35 +0000 (16:05 +0200)
committerDodji Seketeli <dodji@redhat.com>
Thu, 27 Oct 2016 14:05:35 +0000 (16:05 +0200)
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 <dodji@redhat.com>
configure.ac

index fdfcbf69990a0c347d3ac68fe08dff22a5a269dc..402bbc6fda34727a8f95262204bd2f6ccfa22336 100644 (file)
@@ -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