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

index 93662b4e8f1ec6afd61b32950ebb4a0176f56b7e..31eef57fe48c6fc5a03ac02dd6cc0ca17da0c832 100644 (file)
@@ -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],