blob: 9d31b9808073a468798a068a82ec9f848000e633 [file] [log] [blame]
Andrew Geissler82c905d2020-04-13 13:39:40 -05001From 2325a92f1896a2a7f586611686801b41fbc91b50 Mon Sep 17 00:00:00 2001
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08002From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Mon, 27 Aug 2018 15:00:51 +0800
4Subject: [PATCH] configure.in: remove useless `-L$use_openssl/lib'
5
6Since `--with-openssl=${STAGING_DIR_HOST}${prefix}' is used in bind recipe,
7the `-L$use_openssl/lib' has a hardcoded suffix, removing it is harmless
8and helpful for clean up host build path in isc-config.sh
9
10Upstream-Status: Inappropriate [oe-core specific]
11
12Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Andrew Geissler82c905d2020-04-13 13:39:40 -050013
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080014---
Andrew Geissler82c905d2020-04-13 13:39:40 -050015 configure.ac | 2 +-
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080016 1 file changed, 1 insertion(+), 1 deletion(-)
17
Andrew Geissler82c905d2020-04-13 13:39:40 -050018diff --git a/configure.ac b/configure.ac
19index e85a5c6..2bbfc58 100644
20--- a/configure.ac
21+++ b/configure.ac
22@@ -1631,7 +1631,7 @@ If you don't want OpenSSL, use --without-openssl])
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080023 fi
24 ;;
25 *)
26- DST_OPENSSL_LIBS="-L$use_openssl/lib -lcrypto"
27+ DST_OPENSSL_LIBS="-lcrypto"
28 ;;
29 esac
30 fi