Merge pull request #4735 from soltanmm/sandslash

Remove trailing directory-name slashes in setup.py
This commit is contained in:
Masood Malekghassemi 2016-01-18 00:48:17 -08:00
commit 16affcce96
1 changed files with 2 additions and 2 deletions

View File

@ -42,8 +42,8 @@ from setuptools.command import egg_info
# Redirect the manifest template from MANIFEST.in to PYTHON-MANIFEST.in.
egg_info.manifest_maker.template = 'PYTHON-MANIFEST.in'
PYTHON_STEM = './src/python/grpcio/'
CORE_INCLUDE = ('./include', './',)
PYTHON_STEM = './src/python/grpcio'
CORE_INCLUDE = ('./include', '.',)
BORINGSSL_INCLUDE = ('./third_party/boringssl/include',)
# Ensure we're in the proper directory whether or not we're being used by pip.