From f071d82071b761982fa7e128ae02a22335ace8d3 Mon Sep 17 00:00:00 2001 From: Stefan Berger Date: Wed, 31 May 2017 17:45:51 -0400 Subject: [PATCH] build: test for linux-* rather than linux-gnu Check for linux-* when testing $host_os so we properly detect when to set WITH_VTPM_PROXY. Signed-off-by: Stefan Berger --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ae21f042..bb07c788 100644 --- a/configure.ac +++ b/configure.ac @@ -436,7 +436,7 @@ fi with_vtpm_proxy=no case $host_os in -linux-gnu) +linux-*) with_vtpm_proxy=yes AC_DEFINE_UNQUOTED([WITH_VTPM_PROXY], 1, [whether to build in vTPM proxy support (Linux only)])