Skip to content
Snippets Groups Projects
Commit 86df6856 authored by Amir Mohammadi's avatar Amir Mohammadi
Browse files

fix comment typo

parent a4917965
Branches
Tags
1 merge request!6Search system for lapack and blas first before looking into numpy
...@@ -69,7 +69,7 @@ math_flags = dict( ...@@ -69,7 +69,7 @@ math_flags = dict(
for key in math_flags: for key in math_flags:
math_flags[key] = uniq(lapack_flags.get(key, []) + blas_flags.get(key, [])) math_flags[key] = uniq(lapack_flags.get(key, []) + blas_flags.get(key, []))
# checks if those libraries actually exists # checks if those libraries actually exist
found_all = all([find_library(lib, prefixes=math_flags.get('library_dirs')) found_all = all([find_library(lib, prefixes=math_flags.get('library_dirs'))
for lib in math_flags['libraries']]) for lib in math_flags['libraries']])
if not found_all: if not found_all:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment