Skip to content

Commit

Permalink
Remove trailing directory-name slashes in setup.py
Browse files Browse the repository at this point in the history
Python on Windows inexplicably chokes on trailing slashes.
  • Loading branch information
soltanmm committed Jan 14, 2016
1 parent f8eacca commit e540b57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
# 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.
Expand Down

0 comments on commit e540b57

Please sign in to comment.