blob: 751f1b3404a2dff974c548bebbf0ea5588a25c18 [file] [log] [blame]
Andrew Geissler95ac1b82021-03-31 14:34:31 -05001From 154c7465de2aeb9a8ba3416bbed6e6e07f58c583 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Thu, 11 Mar 2021 21:52:28 -0800
4Subject: [PATCH] configure: Do not enforce libdir for ppc64
5
6OE has its own multilib configuration, therefore hardcoding libdir
7breaks that, instead respect the settings coming from build environment
8via configure options.
9
10Upstream-Status: Pending
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12---
13 configure.ac | 6 ------
14 1 file changed, 6 deletions(-)
15
16diff --git a/configure.ac b/configure.ac
17index c8d68f7..254440f 100644
18--- a/configure.ac
19+++ b/configure.ac
20@@ -206,12 +206,6 @@ fi
21 AM_CONDITIONAL(USE_DWARF, [test x$use_dwarf = xyes])
22 AC_MSG_RESULT([$use_dwarf])
23
24-if test x$target_arch = xppc64; then
25- libdir='${exec_prefix}/lib64'
26- AC_MSG_NOTICE([PowerPC64 detected, lib will be installed ${libdir}]);
27- AC_SUBST([libdir])
28-fi
29-
30 AC_MSG_CHECKING([whether to restrict build to remote support])
31 if test x$target_arch != x$host_arch; then
32 CPPFLAGS="${CPPFLAGS} -DUNW_REMOTE_ONLY"
33--
342.30.2
35