aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorBrandon Invergo <brandon@invergo.net>2013-05-20 00:02:50 +0200
committerBrandon Invergo <brandon@invergo.net>2013-05-20 00:02:50 +0200
commit20f7fd5d0bcdbc22009f8b6a783e7550011976d4 (patch)
treee139bb785e29f4ce36b09cc8bf6b631048af4ce7 /configure.ac
parente4801f4d4cf6dc1035ec0474bf8619ea78318e69 (diff)
downloadmediagoblin-20f7fd5d0bcdbc22009f8b6a783e7550011976d4.tar.lz
mediagoblin-20f7fd5d0bcdbc22009f8b6a783e7550011976d4.tar.xz
mediagoblin-20f7fd5d0bcdbc22009f8b6a783e7550011976d4.zip
make virtualenv use the default
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 7fedb6b7..3a6a802f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -110,9 +110,9 @@ dnl
# Support installing to a virtualenv via the --with-virtualenv
# configure flag
AC_ARG_WITH([virtualenv],
- [AS_HELP_STRING([--with-virtualenv], [install to a Python virtualenv])],
+ [AS_HELP_STRING([--without-virtualenv], [install to a Python virtualenv])],
[],
- [with_virtualenv=no])
+ [with_virtualenv=yes])
AS_IF([test "x$with_virtualenv" != xno],
AC_CHECK_PROGS([VIRTUALENV], [virtualenv virtualenv3 virtualenv2], [no])
AS_IF([test "x$VIRTUALENV" = xno],