[Opensrf-commits] r1449 - trunk
svn at svn.open-ils.org
svn at svn.open-ils.org
Tue Oct 7 10:36:34 EDT 2008
Author: dbs
Date: 2008-10-07 10:36:33 -0400 (Tue, 07 Oct 2008)
New Revision: 1449
Modified:
trunk/configure.ac
Log:
Disable Python by default as it is not currently required
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2008-10-01 03:02:16 UTC (rev 1448)
+++ trunk/configure.ac 2008-10-07 14:36:33 UTC (rev 1449)
@@ -69,13 +69,13 @@
# build and install the python modules
AC_ARG_ENABLE([python],
-[ --disable-python disable building and installing python modules],
+[ --enable-python disable building and installing python modules],
[case "${enableval}" in
yes) OSRF_INSTALL_PYTHON=true ;;
no) OSRF_INSTALL_PYTHON=false ;;
*) AC_MSG_ERROR([please choose another value for --enable-python (supported values are yes or no)]) ;;
esac],
-[OSRF_INSTALL_PYTHON=true])
+[OSRF_INSTALL_PYTHON=false])
AM_CONDITIONAL([BUILDPYTHON], [test x$OSRF_INSTALL_PYTHON = xtrue])
AC_SUBST([OSRF_INSTALL_PYTHON])
More information about the opensrf-commits
mailing list