Andrew Geissler | 1fe918a | 2020-05-15 14:16:47 -0500 | [diff] [blame] | 1 | When calculate value of ldblibdir, it checks whether the directory of |
| 2 | $ldblibdir exists. If not, it assigns ldblibdir with ${libdir}/ldb. It is not |
| 3 | suitable for cross compile. Fix it that only re-assign ldblibdir when its value |
| 4 | is empty. |
| 5 | |
| 6 | Upstream-Status: Inappropriate [cross compile specific] |
| 7 | |
| 8 | Signed-off-by: Kai Kang <kai.kang@windriver.com> |
| 9 | --- |
| 10 | src/external/libldb.m4 | 2 +- |
| 11 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 12 | |
| 13 | diff --git a/src/external/libldb.m4 b/src/external/libldb.m4 |
| 14 | index c400add..5e5f06d 100644 |
| 15 | --- a/src/external/libldb.m4 |
| 16 | +++ b/src/external/libldb.m4 |
| 17 | @@ -19,7 +19,7 @@ if test x"$with_ldb_lib_dir" != x; then |
| 18 | ldblibdir=$with_ldb_lib_dir |
| 19 | else |
| 20 | ldblibdir="`$PKG_CONFIG --variable=modulesdir ldb`" |
| 21 | - if ! test -d $ldblibdir; then |
| 22 | + if test -z $ldblibdir; then |
| 23 | ldblibdir="${libdir}/ldb" |
| 24 | fi |
| 25 | fi |