summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/rng-tools/rng-tools/underquote.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/rng-tools/rng-tools/underquote.patch')
-rw-r--r--meta/recipes-support/rng-tools/rng-tools/underquote.patch46
1 files changed, 0 insertions, 46 deletions
diff --git a/meta/recipes-support/rng-tools/rng-tools/underquote.patch b/meta/recipes-support/rng-tools/rng-tools/underquote.patch
deleted file mode 100644
index aa4bbcb346..0000000000
--- a/meta/recipes-support/rng-tools/rng-tools/underquote.patch
+++ /dev/null
@@ -1,46 +0,0 @@
1From 03fe7efa1bc04a83fb9b6787998e7baa7ee90646 Mon Sep 17 00:00:00 2001
2From: Richard Purdie <richard.purdie@linuxfoundation.org>
3Date: Mon, 22 Oct 2018 15:27:41 +0800
4Subject: [PATCH 3/4] Fix underquoted m4 entry. This causes a failure if gcrypt
5 isn't present:
6
7| configure: libgcrypt support disabled
8| ../rng-tools-5/configure: line 4345: ac_fn_c_try_link: command not found
9| configure: error: in `/media/build1/poky/build/tmp/work/i586-poky-linux/rng-tools/5-r0/build':
10
11RP
122016/2/16
13
14Upstream-Status: Pending
15
16Rebase to 6.6
17Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
18---
19 configure.ac | 4 ++--
20 1 file changed, 2 insertions(+), 2 deletions(-)
21
22diff --git a/configure.ac b/configure.ac
23index dd1c30f..88d2be3 100644
24--- a/configure.ac
25+++ b/configure.ac
26@@ -124,7 +124,7 @@ AS_IF(
27 [test "x$with_libgcrypt" != "xno"],
28 [
29 AC_CHECK_HEADER([gcrypt.h],
30- AC_CHECK_LIB(
31+ [AC_CHECK_LIB(
32 [gcrypt],
33 [gcry_check_version], ,
34 [
35@@ -133,7 +133,7 @@ AS_IF(
36 AC_MSG_NOTICE([libgcrypt support disabled])
37 fi
38 ]
39- ),
40+ )],
41 [if test "x$with_libgcrypt" != "xcheck"; then
42 AC_MSG_FAILURE([libgcrypt headers not found]); else
43 AC_MSG_NOTICE([libgcrypt support disabled])
44--
452.7.4
46