From 13c326b6d02c85bbf37d7d74b02dedb75b0142ec Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 25 Oct 2020 12:41:04 +0100 Subject: Fix spurious error message in projects without tests --- extras/autowaf.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'extras/autowaf.py') diff --git a/extras/autowaf.py b/extras/autowaf.py index ada981f..87c0dc2 100644 --- a/extras/autowaf.py +++ b/extras/autowaf.py @@ -624,6 +624,8 @@ def configure(conf): mandatory=False, uselib_store='GCOV'): conf.env.HAVE_GCOV = True + except AttributeError: + pass # Test options do not exist except Exception as e: Logs.error("error: %s" % e) -- cgit v1.2.1