From: Josh Durgin Date: Wed, 30 Mar 2016 18:18:56 +0000 (-0700) Subject: pybind: remove language="c++" X-Git-Tag: ses3-milestone4~21^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=184ec19bc2982c9c469b939e6db671e021b8c3dd;p=ceph.git pybind: remove language="c++" These are all based on the C interfaces, and should need no C++ Signed-off-by: Josh Durgin --- diff --git a/src/pybind/cephfs/setup.py b/src/pybind/cephfs/setup.py index 73488eb8c543..371358b0dabf 100755 --- a/src/pybind/cephfs/setup.py +++ b/src/pybind/cephfs/setup.py @@ -43,7 +43,6 @@ setup( Extension("cephfs", ["cephfs.pyx"], libraries=["cephfs"], - language="c++" ) ], build_dir=os.environ.get("CYTHON_BUILD_DIR", None), include_path=[ os.path.join(os.path.dirname(__file__), "..", "rados")] diff --git a/src/pybind/rados/setup.py b/src/pybind/rados/setup.py index 2b0f0b6077ca..14d9da50c6fa 100755 --- a/src/pybind/rados/setup.py +++ b/src/pybind/rados/setup.py @@ -43,7 +43,6 @@ setup( Extension("rados", ["rados.pyx"], libraries=["rados"], - language="c++" ) ], build_dir=os.environ.get("CYTHON_BUILD_DIR", None)), cmdclass={ diff --git a/src/pybind/rbd/setup.py b/src/pybind/rbd/setup.py index 7ca00b4f59e8..79d4d588e259 100755 --- a/src/pybind/rbd/setup.py +++ b/src/pybind/rbd/setup.py @@ -43,7 +43,6 @@ setup( Extension("rbd", ["rbd.pyx"], libraries=["rbd"], - language="c++" ) ], build_dir=os.environ.get("CYTHON_BUILD_DIR", None), include_path=[ os.path.join(os.path.dirname(__file__), "..", "rados")]