aboutsummaryrefslogtreecommitdiff
path: root/python/setup.py
diff options
context:
space:
mode:
authorliujisi@google.com <liujisi@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2011-04-29 02:12:48 +0000
committerliujisi@google.com <liujisi@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2011-04-29 02:12:48 +0000
commit03aaa0417f2cdb318d6e07df13686203d2f3a1ab (patch)
treea35c9eba8451b363dbd84ebf369a62df3eac0116 /python/setup.py
parent5a3342823a3edcf9a3532d79316d17c57ec5d353 (diff)
downloadprotobuf-03aaa0417f2cdb318d6e07df13686203d2f3a1ab.tar.gz
protobuf-03aaa0417f2cdb318d6e07df13686203d2f3a1ab.tar.bz2
protobuf-03aaa0417f2cdb318d6e07df13686203d2f3a1ab.zip
Python CPP implementation now requires c++ libprotobuf installed before running
setup.py to fix RPATH problem.
Diffstat (limited to 'python/setup.py')
-rwxr-xr-xpython/setup.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/python/setup.py b/python/setup.py
index 77cfdd31..2c460cc6 100755
--- a/python/setup.py
+++ b/python/setup.py
@@ -114,10 +114,8 @@ if __name__ == '__main__':
[ "google/protobuf/pyext/python_descriptor.cc",
"google/protobuf/pyext/python_protobuf.cc",
"google/protobuf/pyext/python-proto2.cc" ],
- include_dirs = [ "../src", ".", ],
- libraries = [ "protobuf" ],
- runtime_library_dirs = [ "../src/.libs" ],
- library_dirs = [ "../src/.libs" ]))
+ include_dirs = [ "." ],
+ libraries = [ "protobuf" ]))
setup(name = 'protobuf',
version = '2.4.1-pre',