]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
pybind: remove language="c++" 8381/head
authorJosh Durgin <jdurgin@redhat.com>
Wed, 30 Mar 2016 18:18:56 +0000 (11:18 -0700)
committerJosh Durgin <jdurgin@redhat.com>
Wed, 30 Mar 2016 20:20:28 +0000 (13:20 -0700)
These are all based on the C interfaces, and should need no C++

Signed-off-by: Josh Durgin <jdurgin@redhat.com>
src/pybind/cephfs/setup.py
src/pybind/rados/setup.py
src/pybind/rbd/setup.py

index 73488eb8c54348a04081c7cb85baa03ea7d54d2e..371358b0dabf3169e4f9818611d9ece29ce417ce 100755 (executable)
@@ -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")]
index 2b0f0b6077caeee1dc4745fd24376315f913225a..14d9da50c6fa67bd812920f2fecc81eba92813a4 100755 (executable)
@@ -43,7 +43,6 @@ setup(
         Extension("rados",
             ["rados.pyx"],
             libraries=["rados"],
-            language="c++"
             )
     ], build_dir=os.environ.get("CYTHON_BUILD_DIR", None)),
     cmdclass={
index 7ca00b4f59e85672cf57ce034ed91d3c0444ff00..79d4d588e259fe10e929ebc42478d93b7e0fd305 100755 (executable)
@@ -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")]