]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
build-sys: cleanup BUILD_{WALL,WRITE}
authorKarel Zak <kzak@redhat.com>
Thu, 27 Oct 2011 14:50:54 +0000 (16:50 +0200)
committerKarel Zak <kzak@redhat.com>
Thu, 3 Nov 2011 11:32:51 +0000 (12:32 +0100)
Signed-off-by: Karel Zak <kzak@redhat.com>
configure.ac

index 2332d05da51389d30e764ff6f6f0371cba89eab4..55a78175b5fc3ea81b3102f6a97fede1bd238d43 100644 (file)
@@ -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],