blob: 1422571818a3b4e8ac8888cab1d7cc70f846c381 [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001Fix underquoted m4 entry. This causes a failure if gcrypt isn't present:
2
3| configure: libgcrypt support disabled
4| ../rng-tools-5/configure: line 4345: ac_fn_c_try_link: command not found
5| configure: error: in `/media/build1/poky/build/tmp/work/i586-poky-linux/rng-tools/5-r0/build':
6
7RP
82016/2/16
9
10Index: rng-tools-5/configure.ac
11===================================================================
12--- rng-tools-5.orig/configure.ac
13+++ rng-tools-5/configure.ac
14@@ -71,7 +71,7 @@ AS_IF(
15 [test "x$with_libgcrypt" != "xno"],
16 [
17 AC_CHECK_HEADER([gcrypt.h],
18- AC_CHECK_LIB(
19+ [AC_CHECK_LIB(
20 [gcrypt],
21 [gcry_check_version], ,
22 [
23@@ -80,7 +80,7 @@ AS_IF(
24 AC_MSG_NOTICE([libgcrypt support disabled])
25 fi
26 ]
27- ),
28+ )],
29 [if test "x$with_libgcrypt" != "xcheck"; then
30 AC_MSG_FAILURE([libgcrypt headers not found]); else
31 AC_MSG_NOTICE([libgcrypt support disabled])