blob: 77f2f94eb5cf80e5f181b67edf339cfdc538791d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
From 03626e45436b0b9c345e0c07e4f488375639877a Mon Sep 17 00:00:00 2001
From: Romain Perier <mrpouet@gentoo.org>
Date: Sat, 19 Sep 2009 20:54:32 +0200
Subject: [PATCH] Fix automagic python support when --disable-python is given on the command line
---
configure.in | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/configure.in b/configure.in
index f363571..743fe9d 100644
--- a/configure.in
+++ b/configure.in
@@ -215,7 +215,7 @@ dnl ***************************************************************************
AC_ARG_ENABLE(python,
[AC_HELP_STRING([--enable-python],
[Build libgweather python bindings])],
- [enable_python=yes],
+ [enable_python=$enableval],
[enable_python=no])
if test "$enable_python" = "yes"; then
AM_PATH_PYTHON()
--
1.6.5.rc1
|