summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/bind/bind/0001-configure.in-remove-useless-L-use_openssl-lib.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-connectivity/bind/bind/0001-configure.in-remove-useless-L-use_openssl-lib.patch')
-rw-r--r--meta/recipes-connectivity/bind/bind/0001-configure.in-remove-useless-L-use_openssl-lib.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/meta/recipes-connectivity/bind/bind/0001-configure.in-remove-useless-L-use_openssl-lib.patch b/meta/recipes-connectivity/bind/bind/0001-configure.in-remove-useless-L-use_openssl-lib.patch
deleted file mode 100644
index 9d31b98080..0000000000
--- a/meta/recipes-connectivity/bind/bind/0001-configure.in-remove-useless-L-use_openssl-lib.patch
+++ /dev/null
@@ -1,30 +0,0 @@
1From 2325a92f1896a2a7f586611686801b41fbc91b50 Mon Sep 17 00:00:00 2001
2From: 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>
13
14---
15 configure.ac | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18diff --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])
23 fi
24 ;;
25 *)
26- DST_OPENSSL_LIBS="-L$use_openssl/lib -lcrypto"
27+ DST_OPENSSL_LIBS="-lcrypto"
28 ;;
29 esac
30 fi