From 39e223a8da6080c29c8271a99d2c7716ca4b6e31 Mon Sep 17 00:00:00 2001 From: Marcin Godzina Date: Thu, 6 Jul 2023 08:04:07 +0000 Subject: [#2934] fix ignoring of native-pkg parameter --- hammer.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'hammer.py') diff --git a/hammer.py b/hammer.py index 59e971f4dd..688d69013b 100755 --- a/hammer.py +++ b/hammer.py @@ -2912,7 +2912,9 @@ def _get_features(args): # as they are not compatible with others features = set(ALL_FEATURES) features.discard('all') - features.discard('native-pkg') + # do not include `native-pkg` in `all` if not set explicidly in parameters + if 'native-pkg' not in set(vars(args)['with']): + features.discard('native-pkg') # if we build native packages then some features are required and some not if 'native-pkg' in features: -- cgit v1.2.3