From 919f939cb9da35eb469aae61069b915544b1287e Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Thu, 20 Oct 2022 17:56:11 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Rip=20lib=20only=20for=20extende?= =?UTF-8?q?d=20apps?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/parser.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/parser.py b/src/parser.py index 25de3f7..5b0afcc 100644 --- a/src/parser.py +++ b/src/parser.py @@ -104,7 +104,11 @@ class Parser(object): if self._PATCHES: args.extend(self._PATCHES) - if self.config.build_extended and len(self.config.archs_to_build) > 0: + if ( + self.config.build_extended + and len(self.config.archs_to_build) > 0 + and app in self.config.extended_apps + ): excluded = set(possible_archs) - set(self.config.archs_to_build) for arch in excluded: args.append("--rip-lib")