From 42de5980999cd55299fe8bb6d94f367cbd8a435c Mon Sep 17 00:00:00 2001 From: Serge Rehbinder Date: Thu, 16 Mar 2017 16:37:17 +0100 Subject: [PATCH] Do not filter the fixed products when creating SRC packages --- commands/package.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/commands/package.py b/commands/package.py index 8ad4ee9..fa06b75 100644 --- a/commands/package.py +++ b/commands/package.py @@ -702,8 +702,7 @@ def create_project_for_src_package(config, tmp_working_dir, with_vcs): l_products = src.product.get_products_infos(lproducts_name, config) for p_name, p_info in l_products: # ignore native and fixed products - if (src.product.product_is_native(p_info) or - src.product.product_is_fixed(p_info)): + if src.product.product_is_native(p_info): continue find_product_scripts_and_pyconf(p_name, p_info, -- 2.39.2