Skip to content
This repository has been archived by the owner on Mar 8, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Aksetup: fix superclass ref
  • Loading branch information
inducer committed Oct 17, 2015
1 parent be9da3c commit e63d022
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aksetup_helper.py
Expand Up @@ -68,7 +68,7 @@ def get_module_include_path(self, name):
return resource_filename(Requirement.parse(name), "%s/include" % name)

def get_additional_include_dirs(self):
return (super(PyUblasExtension, self).get_additional_include_dirs()
return (NumpyExtension.get_additional_include_dirs(self)
+ [self.get_module_include_path("pyublas")])


Expand Down Expand Up @@ -492,7 +492,7 @@ def __init__(self, lib_base_name, default_lib_name=None):
Libraries.__init__(self, "BOOST_%s" % lib_base_name.upper(),
[default_lib_name],
help="Library names for Boost C++ %s library (without lib or .so)"
% humanize(lib_base_name))
% humanize(lib_base_name))


def set_up_shipped_boost_if_requested(project_name, conf, source_path=None,
Expand Down

0 comments on commit e63d022

Please sign in to comment.