Fix #1017 - Exception caused by activity being set on incorrect foreign key
[mediagoblin.git] / configure.ac
index b998fabdd5c03a9e04a0c3fa6cdbad226776954e..6224f1cef59d7c064e6b1b2025cbf7e174da3baa 100644 (file)
@@ -54,7 +54,7 @@ dnl Load macros from the m4/ directory. If you plan to write new
 dnl macros, put them in files in this directory.
 dnl----
 dnl
-AC_CONFIG_MACRO_DIR([m4])
+dnl AC_CONFIG_MACRO_DIR([m4])
 
 
 dnl # The default prefix should be changed from /usr/local. Set it, as in
@@ -80,12 +80,12 @@ AC_ARG_WITH([python3],
        [with_python3=no])
 AS_IF([test "x$with_python3" != xno],
         AC_CHECK_PROGS([PYTHON], [python3.3], [none])
-        AC_SUBST([USE_PYTHON3], [yes])
+        AC_SUBST([USE_PYTHON3], [true])
        AS_IF([test "x$PYTHON" = xnone],
               [AC_MSG_FAILURE(
                [--with-python3 given but no acceptable python3 (3.3) could be found])]),
       AC_CHECK_PROGS([PYTHON], [python2.7 python2.6], [none])
-      AC_SUBST([USE_PYTHON3], [no])
+      AC_SUBST([USE_PYTHON3], [false])
       AS_IF([test "x$PYTHON" = xnone],
               [AC_MSG_FAILURE(
                [No acceptable python (2.7, 2.6) could be found])]))
@@ -435,7 +435,6 @@ dnl#########
 
 dnl Define the files to be configured
 AC_CONFIG_FILES([Makefile])
-AC_CONFIG_FILES([env], [chmod +x env])
 
 dnl Generate config.status
 AC_OUTPUT