[open-ils-commits] r10777 - trunk
svn at svn.open-ils.org
svn at svn.open-ils.org
Tue Oct 7 10:32:24 EDT 2008
Author: dbs
Date: 2008-10-07 10:32:23 -0400 (Tue, 07 Oct 2008)
New Revision: 10777
Modified:
trunk/configure.ac
Log:
disable python by default as it is not necessary in 1.4
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2008-10-07 12:48:39 UTC (rev 10776)
+++ trunk/configure.ac 2008-10-07 14:32:23 UTC (rev 10777)
@@ -138,13 +138,13 @@
# 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])
More information about the open-ils-commits
mailing list