From bd2d6bade55334c68bdfa706e5d2581a0f0d2121 Mon Sep 17 00:00:00 2001 From: gfk Date: Sat, 22 Dec 2001 03:18:05 +0000 Subject: [PATCH] Small fix to have the name of the selected drivers displayed in a comma separated list. Other typos fixed too. --- acinclude.m4 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/acinclude.m4 b/acinclude.m4 index 5d349e7..0e58731 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -1,5 +1,5 @@ AC_DEFUN(LCD_DRIVERS_SELECT, [ -AC_MSG_CHECKING(for which drivers to compile) +AC_CHECKING(for which drivers to compile) AC_ARG_ENABLE(drivers, [ --enable-drivers= compile driver for LCDs in .] @@ -188,7 +188,8 @@ dnl else esac done -AC_MSG_RESULT([Will compile drivers:$actdrivers]) +actdrivers=`echo $actdrivers | sed 's/ /,/g'` +AC_MSG_RESULT([Will compile drivers: $actdrivers]) AC_SUBST(LIBCURSES) AC_SUBST(LIBIRMAN)