41 lines
1.0 KiB
Diff
41 lines
1.0 KiB
Diff
From cc556a853531190ff829b08e67c30bd986543f03 Mon Sep 17 00:00:00 2001
|
|
From: Viktor Ashirov <vashirov@redhat.com>
|
|
Date: Mon, 10 Jun 2024 09:43:38 +0200
|
|
Subject: [PATCH] Issue 6120 - /usr/lib64/dirsrv/plugins/libback-bdb.so has an
|
|
invalid-looking DT_RPATH: /usr/lib/dirsrv
|
|
|
|
Bug Description:
|
|
rpminspect reports an invalid DT_RPATH /usr/lib/dirsrv
|
|
It's evaluated in m4/bundle_libdb.m4 from
|
|
|
|
```
|
|
-R${prefix}/lib/dirsrv"
|
|
```
|
|
|
|
Fix Description:
|
|
Change it to lib64
|
|
|
|
Fixes: https://github.com/389ds/389-ds-base/issues/6210
|
|
|
|
Reviewed by: @progier389 (Thanks!)
|
|
---
|
|
m4/bundle_libdb.m4 | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/m4/bundle_libdb.m4 b/m4/bundle_libdb.m4
|
|
index c9bf3142e..3ae3beb49 100644
|
|
--- a/m4/bundle_libdb.m4
|
|
+++ b/m4/bundle_libdb.m4
|
|
@@ -8,7 +8,7 @@
|
|
|
|
AC_MSG_CHECKING(Handling bundle_libdb)
|
|
|
|
-db_lib="-L${with_bundle_libdb}/.libs -R${prefix}/lib/dirsrv"
|
|
+db_lib="-L${with_bundle_libdb}/.libs -R${prefix}/lib64/dirsrv"
|
|
db_incdir=$with_bundle_libdb
|
|
db_inc="-I $db_incdir"
|
|
db_libver="5.3-389ds"
|
|
--
|
|
2.45.0
|
|
|