소스 검색

[PYTHON] Remove unnecessary `include_dir`

Tamir Duberstein 10 년 전
부모
커밋
a46a2e9422
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      python/setup.py

+ 1 - 1
python/setup.py

@@ -155,7 +155,7 @@ if __name__ == '__main__':
           "google/protobuf/pyext/repeated_scalar_container.cc",
           "google/protobuf/pyext/repeated_composite_container.cc" ],
         define_macros=[('GOOGLE_PROTOBUF_HAS_ONEOF', '1')],
-        include_dirs = [ ".", "..", "../src"],
+        include_dirs = [ ".", "../src" ],
         libraries = [ "protobuf" ],
         library_dirs = [ '../src/.libs' ],
         ))