]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
build-sys: cleanup BUILD_{DDATE,AGETTY}
authorKarel Zak <kzak@redhat.com>
Thu, 27 Oct 2011 13:57:18 +0000 (15:57 +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 1e45f5e2dfa52b4db2e9d73e116395ce89395f12..205b76c552c34cf0d67a3c17fbc9ee2c18fa3c97 100644 (file)
@@ -772,13 +772,17 @@ AC_ARG_ENABLE([ddate],
   AS_HELP_STRING([--enable-ddate], [do build ddate]),
   [], enable_ddate=no
 )
-AM_CONDITIONAL(BUILD_DDATE, test "x$enable_ddate" = xyes)
+build_ddate=$enable_ddate
+AM_CONDITIONAL(BUILD_DDATE, test "x$build_ddate" = xyes)
+
 
 AC_ARG_ENABLE([agetty],
   AS_HELP_STRING([--disable-agetty], [do not build agetty]),
   [], enable_agetty=yes
 )
-AM_CONDITIONAL(BUILD_AGETTY, test "x$enable_agetty" = xyes)
+build_agetty=$enable_agetty
+AM_CONDITIONAL(BUILD_AGETTY, test "x$build_agetty" = xyes)
+
 
 AC_ARG_ENABLE([cramfs],
   AS_HELP_STRING([--disable-cramfs], [do not build fsck.cramfs, mkfs.cramfs]),