From: Dan Nicholson Date: Sun, 6 Jul 2008 21:17:39 +0000 (-0700) Subject: autoconf: Allow commas or spaces to separate DRI drivers X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e6e4f25aa5433fc77a3c1b0dba2300cc4cee5d33;p=mesa.git autoconf: Allow commas or spaces to separate DRI drivers Explicitly allow the argument to --with-dri-drivers to contain comma-separated or space-separated drivers. A space-separated driver list worked by chance before. --- diff --git a/configure.ac b/configure.ac index 961a60cccfa..a2ebc3b3b6b 100644 --- a/configure.ac +++ b/configure.ac @@ -619,7 +619,7 @@ case "$with_dri_drivers" in no|yes) ;; *) # verify the requested driver directories exist - dri_drivers=`IFS=,; echo $with_dri_drivers` + dri_drivers=`IFS=', '; echo $with_dri_drivers` for driver in $dri_drivers; do test -d "$srcdir/src/mesa/drivers/dri/$driver" || \ AC_MSG_ERROR([DRI driver directory '$driver' doesn't exist])