[2/3] configure.ac: Fix the default path to the include dir

Message ID 20240823093150.791835-3-dodji@redhat.com
State New
Headers
Series Add DWARF self-comparison tests to libabigail-tests |

Commit Message

Dodji Seketeli Aug. 23, 2024, 9:31 a.m. UTC
  From: Dodji Seketeli <dodji@seketeli.org>

	* configure.ac: Fix the value of LIBABIGAIL_HEADERS_DIR to
	properly point to the include directory.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
Signed-off-by: Dodji Seketeli <dodji@seketeli.org>
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/configure.ac b/configure.ac
index ed2504b..442bc0a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -99,7 +99,7 @@  AC_SUBST(LIBABIGAIL_LIBRARY)
 if test x$LIBABIGAIL_HEADERS_DIR = xnone; then
 # no --with-libabigail-headers-dir was provided so let's derive
 # LIBABIGAIL_HEADERS_DIR from LIBABIGAIL_TOOLS_DIR.
-  LIBABIGAIL_HEADERS_DIR=$LIBABIGAIL_TOOLS_DIR/../include
+  LIBABIGAIL_HEADERS_DIR=$LIBABIGAIL_TOOLS_DIR/../../include
 fi
 
 AC_MSG_NOTICE([LIBABIGAIL_HEADERS_DIR=${LIBABIGAIL_HEADERS_DIR}])