From 6d0bc33c4e059df51a54d05adce4731b1e7a45b0 Mon Sep 17 00:00:00 2001 From: dbs Date: Tue, 7 Oct 2008 14:32:23 +0000 Subject: [PATCH] disable python by default as it is not necessary in 1.4 git-svn-id: svn://svn.open-ils.org/ILS/trunk@10777 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 19f8d8fc92..6f31d20397 100644 --- a/configure.ac +++ b/configure.ac @@ -138,13 +138,13 @@ AM_CONDITIONAL([BUILDEGJAVA], [test x$evergreen_java = xtrue]) # build the evergreen python modules? AC_ARG_ENABLE([evergreen-python], -[ --disable-evergreen-python disables the installation of the evergreen python modules ], +[ --enable-evergreen-python disables the installation of the evergreen python modules ], [case "${enableval}" in yes) EG_PYTHON_INSTALL=true ;; no) EG_PYTHON_INSTALL=false ;; - *) AC_MSG_ERROR([please choose another value for --disable-python-install (supported values are yes or no)]) + *) AC_MSG_ERROR([please choose another value for --enable-python-install (supported values are yes or no)]) esac], -[EG_PYTHON_INSTALL=true]) +[EG_PYTHON_INSTALL=false]) AM_CONDITIONAL([BUILDEGPYTHON], [test x$EG_PYTHON_INSTALL = xtrue]) -- 2.43.2