Beispiel #1
0
    def make_module_extra(self):
        """
        Add python bindings to the pythonpath
        """
        if self.with_python_bindings:
            txt = PythonPackage.make_module_extra(self)
        else:
            txt = super(EB_libxml2, self).make_module_extra()

        txt += self.module_generator.prepend_paths('CPATH', [os.path.join('include', 'libxml2')])
        return txt
    def make_module_extra(self):
        """
        Add python bindings to the pythonpath
        """
        if self.with_python_bindings:
            txt = PythonPackage.make_module_extra(self)
        else:
            txt = super(EB_libxml2, self).make_module_extra()

        txt += self.module_generator.prepend_paths('CPATH', [os.path.join('include', 'libxml2')])
        return txt
 def make_module_extra(self):
     """Add extra Python package module parameters"""
     return PythonPackage.make_module_extra(self)
Beispiel #4
0
 def make_module_extra(self):
     return PythonPackage.make_module_extra(self)
 def make_module_extra(self):
     """Add extra Python package module parameters"""
     return PythonPackage.make_module_extra(self)
 def make_module_extra(self):
     """
     Add python bindings to the pythonpath
     """
     return PythonPackage.make_module_extra(self)
 def make_module_extra(self):
     """
     Add python bindings to the pythonpath
     """
     return PythonPackage.make_module_extra(self)