Merge pull request #2414 from radarhere/private

Removed unused private functions
This commit is contained in:
wiredfool 2017-02-20 22:04:51 +00:00 committed by GitHub
commit bbc205573d
2 changed files with 0 additions and 8 deletions

View File

@ -84,10 +84,6 @@ def _find_library_file(self, library):
return ret
def _lib_include(root):
# map root to (root/lib, root/include)
return os.path.join(root, "lib"), os.path.join(root, "include")
def _cmd_exists(cmd):
return any(
os.access(os.path.join(path, cmd), os.X_OK)

View File

@ -10,10 +10,6 @@ def _relpath(*args):
return os.path.join(os.getcwd(), *args)
def _relbuild(*args):
return _relpath('build', *args)
build_dir = _relpath('build')
inc_dir = _relpath('depends')