aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/rng-tools/rng-tools/underquote.patch
blob: 1422571818a3b4e8ac8888cab1d7cc70f846c381 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Fix underquoted m4 entry. This causes a failure if gcrypt isn't present:

| configure: libgcrypt support disabled
| ../rng-tools-5/configure: line 4345: ac_fn_c_try_link: command not found
| configure: error: in `/media/build1/poky/build/tmp/work/i586-poky-linux/rng-tools/5-r0/build':

RP
2016/2/16

Index: rng-tools-5/configure.ac
===================================================================
--- rng-tools-5.orig/configure.ac
+++ rng-tools-5/configure.ac
@@ -71,7 +71,7 @@ AS_IF(
 	[test "x$with_libgcrypt" != "xno"],
 	[
 		AC_CHECK_HEADER([gcrypt.h],
-			AC_CHECK_LIB(
+			[AC_CHECK_LIB(
 				[gcrypt],
 				[gcry_check_version], ,
 				[
@@ -80,7 +80,7 @@ AS_IF(
 						AC_MSG_NOTICE([libgcrypt support disabled])
 					fi
 				]
-			),
+			)],
 			[if test "x$with_libgcrypt" != "xcheck"; then
 				AC_MSG_FAILURE([libgcrypt headers not found]); else
 				AC_MSG_NOTICE([libgcrypt support disabled])