From f089811625f27fe04d4d638d6a513b17046bdea8 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Thu, 27 Oct 2011 16:50:54 +0200 Subject: [PATCH] build-sys: cleanup BUILD_{WALL,WRITE} Signed-off-by: Karel Zak --- configure.ac | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 2332d05da5..55a78175b5 100644 --- a/configure.ac +++ b/configure.ac @@ -1000,14 +1000,16 @@ AC_ARG_ENABLE([wall], AS_HELP_STRING([--disable-wall], [do not build wall]), [], enable_wall=yes ) -AM_CONDITIONAL(BUILD_WALL, test "x$enable_wall" = xyes) +build_wall=$enable_wall +AM_CONDITIONAL(BUILD_WALL, test "x$build_wall" = xyes) AC_ARG_ENABLE([write], AS_HELP_STRING([--enable-write], [build write]), [], enable_write=no ) -AM_CONDITIONAL(BUILD_WRITE, test "x$enable_write" = xyes) +build_write=$enable_write +AM_CONDITIONAL(BUILD_WRITE, test "x$build_write" = xyes) AC_ARG_ENABLE([chsh-only-listed], -- 2.47.3