From 476f87e155b6ff0d0ee21ebd36a6a8cddc6003a1 Mon Sep 17 00:00:00 2001 From: Vakhid Betrakhmadov Date: Tue, 8 Oct 2024 17:07:00 +0100 Subject: [PATCH] Disable "PREFIX.*" -> "PREFIX.BUNDLE_ID" substitutions in entitlements (#2551) (#8) --- tools/plisttool/plisttool.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tools/plisttool/plisttool.py b/tools/plisttool/plisttool.py index 5aa2f93192..fed5695d89 100644 --- a/tools/plisttool/plisttool.py +++ b/tools/plisttool/plisttool.py @@ -1118,11 +1118,6 @@ def __init__(self, target, options): # # Set up the subs using the info extracted from the provisioning # profile: - # - "PREFIX.*" -> "PREFIX.BUNDLE_ID" - bundle_id = self.options.get('bundle_id') - if bundle_id: - self._extra_raw_subs['%s.*' % team_prefix] = '%s.%s' % ( - team_prefix, bundle_id) # - "$(AppIdentifierPrefix)" -> "PREFIX." self._extra_var_subs['AppIdentifierPrefix'] = '%s.' % team_prefix