34 lines
1.2 KiB
Diff
34 lines
1.2 KiB
Diff
|
From 15617bfa3d12ebe3927b130a88df6dd12ee8d0f9 Mon Sep 17 00:00:00 2001
|
||
|
Message-Id: <15617bfa3d12ebe3927b130a88df6dd12ee8d0f9.1488964568.git.pmatilai@redhat.com>
|
||
|
In-Reply-To: <189b4f88c8e100155ec23a1e0b214bdc8473532a.1488964568.git.pmatilai@redhat.com>
|
||
|
References: <189b4f88c8e100155ec23a1e0b214bdc8473532a.1488964568.git.pmatilai@redhat.com>
|
||
|
From: Mark Wielaard <mjw@redhat.com>
|
||
|
Date: Wed, 24 Aug 2016 17:06:34 +0200
|
||
|
Subject: [PATCH 09/11] Fix libdw configure check.
|
||
|
|
||
|
commit a82119 "configure.ac: use LIBDW always conditionally" contained
|
||
|
a typo that caused WITH_LIBDW_LIB never to be set when you were using
|
||
|
libelf. Fixed by reverting the "!=" to "=" again.
|
||
|
|
||
|
Signed-off-by: Mark Wielaard <mjw@redhat.com>
|
||
|
---
|
||
|
configure.ac | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/configure.ac b/configure.ac
|
||
|
index 5dd2bb6..4baa3f1 100644
|
||
|
--- a/configure.ac
|
||
|
+++ b/configure.ac
|
||
|
@@ -369,7 +369,7 @@ AM_CONDITIONAL(WITH_ARCHIVE,[test "$with_archive" = yes])
|
||
|
#=================
|
||
|
# Check for elfutils libdw library with dwelf_elf_gnu_build_id.
|
||
|
WITH_LIBDW_LIB=
|
||
|
-AS_IF([test "$WITH_LIBELF" != yes],[
|
||
|
+AS_IF([test "$WITH_LIBELF" = yes],[
|
||
|
AC_CHECK_HEADERS([elfutils/libdwelf.h],[
|
||
|
AC_CHECK_LIB(dw, dwelf_elf_gnu_build_id, [
|
||
|
AC_DEFINE(HAVE_LIBDW, 1,
|
||
|
--
|
||
|
2.9.3
|
||
|
|