diff options
author | 2010-06-13 22:25:46 +0000 | |
---|---|---|
committer | 2010-06-13 22:25:46 +0000 | |
commit | 953e37b2a98cb0e3f77c8a95e974c98e2030e611 (patch) | |
tree | c0d2e126c435299c933c1bbf03dd55c5601803fd /dev-libs/libgweather/files | |
parent | Add dev-haskell/hpc - Code Coverage Library for Haskell (diff) | |
download | historical-953e37b2a98cb0e3f77c8a95e974c98e2030e611.tar.gz historical-953e37b2a98cb0e3f77c8a95e974c98e2030e611.tar.bz2 historical-953e37b2a98cb0e3f77c8a95e974c98e2030e611.zip |
Commit missing patch and use a better name for it.
Package-Manager: portage-2.1.8.3/cvs/Linux x86_64
Diffstat (limited to 'dev-libs/libgweather/files')
-rw-r--r-- | dev-libs/libgweather/files/libgweather-2.30.0-fix-automagic-python-support.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/dev-libs/libgweather/files/libgweather-2.30.0-fix-automagic-python-support.patch b/dev-libs/libgweather/files/libgweather-2.30.0-fix-automagic-python-support.patch new file mode 100644 index 000000000000..77f2f94eb5cf --- /dev/null +++ b/dev-libs/libgweather/files/libgweather-2.30.0-fix-automagic-python-support.patch @@ -0,0 +1,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 |