diff options
-rw-r--r-- | configure.ac | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index 8b67de1..db631dc 100644 --- a/configure.ac +++ b/configure.ac @@ -58,9 +58,6 @@ AC_SUBST(DOXYGEN_HAVE_DOT) # For bootstrapping via installed sciteco AC_CHECK_PROG(SCITECO, sciteco, sciteco) -if [[ x$SCITECO = x ]]; then - bootstrap=yes -fi # Checks for libraries. PKG_CHECK_MODULES(LIBGLIB, [glib-2.0], [ @@ -213,10 +210,14 @@ fi AM_CONDITIONAL(BUILD_DEVDOC, [test $dev_doc = yes]) AC_ARG_ENABLE(bootstrap, - AS_HELP_STRING([--enable-bootstrap], + AS_HELP_STRING([--disable-bootstrap], [Bootstrap using sciteco-minimal, - otherwise use preinstalled sciteco [default=check]]), - [bootstrap=$enableval]) + otherwise use preinstalled sciteco [default=yes]]), + [bootstrap=$enableval], [bootstrap=yes]) +if [[ $bootstrap = no -a x$SCITECO = x ]]; then + AC_MSG_ERROR([Disabled bootstrapping, but preinstalled SciTECO cannot be found! + Try --enable-bootstrap.]) +fi AM_CONDITIONAL(BOOTSTRAP, [test x$bootstrap = xyes]) AC_CONFIG_FILES([Makefile src/Makefile lib/Makefile]) |