From a9fa063de37f12611a0c0b8ec75fb9d34926e694 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20David=20Ib=C3=A1=C3=B1ez?= Date: Thu, 30 Oct 2014 17:19:11 +0100 Subject: [PATCH] setup: remove old 'include' from include_dirs --- setup.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 2b328b6..f0d802f 100644 --- a/setup.py +++ b/setup.py @@ -195,10 +195,9 @@ setup(name='pygit2', install_requires=['cffi'], zip_safe=False, ext_modules=[ - Extension('_pygit2', pygit2_exts, - include_dirs=[libgit2_include, 'include'], - library_dirs=[libgit2_lib], - libraries=['git2']), + Extension('_pygit2', pygit2_exts, libraries=['git2'], + include_dirs=[libgit2_include], + library_dirs=[libgit2_lib]), # FFI is added in the build step ], cmdclass=cmdclass)