diff options
author | Andy Wingo <wingo@pobox.com> | 2015-04-19 15:53:34 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2015-04-19 15:53:34 +0200 |
commit | b38ef425d654f1146f57a8c2d66e08f3da265a07 (patch) | |
tree | 0470b41757de25dfae3072b02320f868b67b3d22 | |
parent | 5148a70c207434530ce2da7ede3e841be62bb4e1 (diff) |
Remove firstboot check
-rw-r--r-- | configure.ac | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/configure.ac b/configure.ac index bec7f7b95c..943692ecf7 100644 --- a/configure.ac +++ b/configure.ac @@ -486,14 +486,6 @@ fi AM_CONDITIONAL([HAVE_SMACK], [test "x$have_smack" = "xyes"]) # ------------------------------------------------------------------------------ -have_firstboot=no -AC_ARG_ENABLE(firstboot, AS_HELP_STRING([--disable-firstboot], [disable firstboot support])) -if test "x$enable_firstboot" != "xno"; then - have_firstboot=yes -fi -AM_CONDITIONAL(ENABLE_FIRSTBOOT, [test "$have_firstboot" = "yes"]) - -# ------------------------------------------------------------------------------ have_randomseed=no AC_ARG_ENABLE(randomseed, AS_HELP_STRING([--disable-randomseed], [disable randomseed tools])) if test "x$enable_randomseed" != "xno"; then @@ -988,7 +980,6 @@ AC_MSG_RESULT([ SECCOMP: ${have_seccomp} SMACK: ${have_smack} ACL: ${have_acl} - firstboot: ${have_firstboot} randomseed: ${have_randomseed} backlight: ${have_backlight} rfkill: ${have_rfkill} |