From: Karel Zak Date: Thu, 27 Oct 2011 13:57:18 +0000 (+0200) Subject: build-sys: cleanup BUILD_{DDATE,AGETTY} X-Git-Tag: v2.21-rc1~242 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0fc74be1ab153936bbfdc41478df3daa2be45210;p=thirdparty%2Futil-linux.git build-sys: cleanup BUILD_{DDATE,AGETTY} Signed-off-by: Karel Zak --- diff --git a/configure.ac b/configure.ac index 1e45f5e2df..205b76c552 100644 --- a/configure.ac +++ b/configure.ac @@ -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]),