My patch "
568dee1 PR25042 - Support string form DW_FORM_strx{1,4} from
DWARF 5" introduced a thinko in configure.ac. The thinko triggers a
regression test issue on old systems where we don't support
DW_FORM_strx from DWARF 5. Fixed thus.
* configure.ac: Fix thinko when setting the HAVE_DW_FORM_strx
macro.
Signed-off-by: Dodji Seketeli <dodji@redhat.com>
[Define to 1 if dwarf.h has the DW_FORM_strx4 enumerator])
fi
-if test x$HAS_DW_FORM_strx1 -a \
- x$HAS_DW_FORM_strx2 -a \
- x$HAS_DW_FORM_strx3 -a \
- x$HAS_DW_FORM_strx4; then
+if test x$HAS_DW_FORM_strx1 = xyes -a \
+ x$HAS_DW_FORM_strx2 = xyes -a \
+ x$HAS_DW_FORM_strx3 = xyes -a \
+ x$HAS_DW_FORM_strx4 = xyes ; then
AC_DEFINE([HAVE_DW_FORM_strx],
1,
[Define to 1 if dwarf.h has the DW_FORM_strx enumerators])