From 2dc685290a34bef9f9c9b83e24137da9b5b25dd9 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Thu, 27 Oct 2011 16:18:12 +0200 Subject: build-sys: cleanup BUILD_{LAST,LINE,MESG} Signed-off-by: Karel Zak --- configure.ac | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 93662b4e8..31eef57fe 100644 --- a/configure.ac +++ b/configure.ac @@ -856,19 +856,24 @@ AC_ARG_ENABLE([last], AS_HELP_STRING([--enable-last], [build last]), [], enable_last=no ) -AM_CONDITIONAL(BUILD_LAST, test "x$enable_last" = xyes) +build_last=$enable_last +AM_CONDITIONAL(BUILD_LAST, test "x$build_last" = xyes) + AC_ARG_ENABLE([line], AS_HELP_STRING([--enable-line], [build line]), [], enable_line=no ) -AM_CONDITIONAL(BUILD_LINE, test "x$enable_line" = xyes) +build_line=$enable_line +AM_CONDITIONAL(BUILD_LINE, test "x$build_line" = xyes) + AC_ARG_ENABLE([mesg], AS_HELP_STRING([--enable-mesg], [build mesg]), [], enable_mesg=no ) -AM_CONDITIONAL(BUILD_MESG, test "x$enable_mesg" = xyes) +build_mesg=$enable_mesg +AM_CONDITIONAL(BUILD_MESG, test "x$build_mesg" = xyes) AC_ARG_ENABLE([raw], -- cgit v1.2.3-55-g7522