From: crouzet Date: Thu, 9 Jan 2020 09:34:00 +0000 (+0100) Subject: don't check native products X-Git-Tag: 5.6.0~24 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=5f3bc90652dbc4101bb7f7842e7ab6efadec12b9;p=tools%2Fsat.git don't check native products --- diff --git a/src/product.py b/src/product.py index ab94a63..fe194f7 100644 --- a/src/product.py +++ b/src/product.py @@ -829,7 +829,8 @@ def check_installation(config, product_info): :return: True if it is well installed :rtype: boolean """ - if not product_compiles(product_info): + # don't check native products, or products that are not compiled + if (not product_compiles(product_info)) or product_is_native(product_info): return True install_dir = product_info.install_dir