diff options
author | Justin Lecher <jlec@gentoo.org> | 2010-07-05 12:45:06 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2010-07-05 12:45:06 +0000 |
commit | 5a6fffc38db914dde52499b9aac32a1b78d558b0 (patch) | |
tree | a054fe0d50600a1074e22b1228e50256851cbcd9 /sci-libs/cbflib/files | |
parent | Fix tests: Do not fail if remote mounting is not supported (bug #323659) (diff) | |
download | gentoo-2-5a6fffc38db914dde52499b9aac32a1b78d558b0.tar.gz gentoo-2-5a6fffc38db914dde52499b9aac32a1b78d558b0.tar.bz2 gentoo-2-5a6fffc38db914dde52499b9aac32a1b78d558b0.zip |
Small python fix
(Portage version: 2.2_rc67/cvs/Linux x86_64, RepoMan options: --force)
Diffstat (limited to 'sci-libs/cbflib/files')
-rw-r--r-- | sci-libs/cbflib/files/0.9.0-python.patch | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sci-libs/cbflib/files/0.9.0-python.patch b/sci-libs/cbflib/files/0.9.0-python.patch new file mode 100644 index 000000000000..972c252bd861 --- /dev/null +++ b/sci-libs/cbflib/files/0.9.0-python.patch @@ -0,0 +1,10 @@ +diff --git a/pycbf/setup.py b/pycbf/setup.py +index 0763f06..f55a42f 100644 +--- a/pycbf/setup.py ++++ b/pycbf/setup.py +@@ -14,4 +14,4 @@ e = Extension('_pycbf', + include_dirs = ["../include"] ) + + # Build it +-setup(name="_pycbf",ext_modules=[e],) ++setup(name="_pycbf",ext_modules=[e],py_modules=["pycbf"],) |