From fa2971356a2ff9f39a9eace698bea54960b9a70e Mon Sep 17 00:00:00 2001 From: Ken VanDine Date: Wed, 23 Jan 2013 07:25:21 +0100 Subject: [PATCH] Fix the check for pyoverridesdir for python3 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 33d28cf..c645663 100644 --- a/configure.ac +++ b/configure.ac @@ -92,7 +92,7 @@ AS_IF([test "x$enable_python" != "xno"], AS_IF([test "x$have_python" = "xyes"], [AM_PATH_PYTHON - AC_SUBST([pyoverridesdir], [`$PYTHON -c "import gi;print gi._overridesdir"`])]) + AC_SUBST([pyoverridesdir], [`$PYTHON -c "import gi;print (gi._overridesdir)" 2>/dev/null`])]) AM_CONDITIONAL([ENABLE_PYTHON], [test "x$have_python" = "xyes"]) -- 2.34.1