From: Karel Zak Date: Thu, 27 Oct 2011 14:50:54 +0000 (+0200) Subject: build-sys: cleanup BUILD_{WALL,WRITE} X-Git-Tag: v2.21-rc1~231 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f089811625f27fe04d4d638d6a513b17046bdea8;p=thirdparty%2Futil-linux.git build-sys: cleanup BUILD_{WALL,WRITE} Signed-off-by: Karel Zak --- 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],