From 800d7c6e23f0a04bd893ee748a74b622657017a9 Mon Sep 17 00:00:00 2001 From: David Seifert Date: Sun, 1 Aug 2021 13:16:16 +0200 Subject: [PATCH] configure.ac: Add missing `test` Signed-off-by: Vladis Dronov --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 0fe06fc..7c8e327 100644 --- a/configure.ac +++ b/configure.ac @@ -68,8 +68,8 @@ AC_PROG_GCC_TRADITIONAL AX_PTHREAD -AM_CONDITIONAL([RDRAND], [test $host_cpu = x86_64 || $host_cpu = i686]) -AS_IF([test $host_cpu = x86_64 || $host_cpu = i686], [AC_DEFINE([HAVE_RDRAND],1,[Enable RDRAND])],[]) +AM_CONDITIONAL([RDRAND], [test $host_cpu = x86_64 || test $host_cpu = i686]) +AS_IF([test $host_cpu = x86_64 || test $host_cpu = i686], [AC_DEFINE([HAVE_RDRAND],1,[Enable RDRAND])],[]) AM_CONDITIONAL([DARN], [test $host_cpu = powerpc64le]) AS_IF([test $host_cpu = powerpc64le], [AC_DEFINE([HAVE_DARN],1,[Enable DARN])],[]) -- 2.26.3