1
0
mirror of https://github.com/ceph/ceph synced 2025-04-01 23:02:17 +00:00

ensure pybind is in the PYTHONPATH

Signed-off-by: Alfredo Deza <alfredo@deza.pe>
This commit is contained in:
Alfredo Deza 2014-03-24 14:23:54 -04:00
parent 37899fa53e
commit 6ec28fd92c

View File

@ -1,3 +1,6 @@
import sys
import os
project = u'Ceph'
copyright = u'2010-2014, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA'
version = 'dev'
@ -67,3 +70,13 @@ def _get_manpages():
man_pages = list(_get_manpages())
asphyxiate_doxygen_xml = 'doxygen'
top_level = os.path.dirname(
os.path.dirname(
os.path.abspath(__file__)
)
)
pybind = os.path.join(top_level, 'src/pybind')
if pybind not in sys.path:
sys.path.insert(0, pybind)