From: Karel Zak Date: Thu, 27 Oct 2011 14:18:12 +0000 (+0200) Subject: build-sys: cleanup BUILD_{LAST,LINE,MESG} X-Git-Tag: v2.21-rc1~236 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2dc685290a34bef9f9c9b83e24137da9b5b25dd9;p=thirdparty%2Futil-linux.git build-sys: cleanup BUILD_{LAST,LINE,MESG} Signed-off-by: Karel Zak --- diff --git a/configure.ac b/configure.ac index 93662b4e8f..31eef57fe4 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],