From 29cf86a02e8cef9363fd247f40c17710a88bd57e Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Mon, 3 Dec 2012 16:22:33 +0100 Subject: [PATCH] build: Fix configure-time warning Due to missing quotes --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 4415e7b..56b42b6 100644 --- a/configure.ac +++ b/configure.ac @@ -49,7 +49,7 @@ AC_ARG_WITH([drivers],[AS_HELP_STRING([--with-drivers], [drivers="$withval"], [drivers="$all_drivers"]) -if test x$drivers = xall ; then +if test "x$drivers" = "xall" ; then drivers=$all_drivers fi