Disable Python by default as it is not currently required
authordbs <dbs@9efc2488-bf62-4759-914b-345cdb29e865>
Tue, 7 Oct 2008 14:36:33 +0000 (14:36 +0000)
committerdbs <dbs@9efc2488-bf62-4759-914b-345cdb29e865>
Tue, 7 Oct 2008 14:36:33 +0000 (14:36 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1449 9efc2488-bf62-4759-914b-345cdb29e865

configure.ac

index 9ebe579..ba492b3 100644 (file)
@@ -69,13 +69,13 @@ AC_SUBST([OSRF_INSTALL_JAVA])
 
 # 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])