diff options
Diffstat (limited to 'mesonbuild/mesonlib.py')
-rw-r--r-- | mesonbuild/mesonlib.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mesonbuild/mesonlib.py b/mesonbuild/mesonlib.py index efb8d11..4a60452 100644 --- a/mesonbuild/mesonlib.py +++ b/mesonbuild/mesonlib.py @@ -1057,6 +1057,12 @@ def detect_subprojects(spdir_name, current_dir='', result=None): def get_error_location_string(fname, lineno): return '{}:{}:'.format(fname, lineno) +def substring_is_in_list(substr, strlist): + for s in strlist: + if substr in s: + return True + return False + class OrderedSet(collections.MutableSet): """A set that preserves the order in which items are added, by first insertion. |