diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-03-22 13:09:11 +0100 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-03-25 11:28:02 +0100 |
commit | e70d8ca5811e8bcc5ce343cdf8210a4a2bcacd1d (patch) | |
tree | 947cc0bea1bba51d3e2283e5b4db2563a85a1e62 | |
parent | 59c5ad98206ce9e51826a3752bf8ce576b661ae6 (diff) |
packages:osx add the platform suffix to installer
-rw-r--r-- | cerbero/packages/osx/packager.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cerbero/packages/osx/packager.py b/cerbero/packages/osx/packager.py index 477e701..e2bedb8 100644 --- a/cerbero/packages/osx/packager.py +++ b/cerbero/packages/osx/packager.py @@ -500,6 +500,10 @@ class IOSPackage(ProductPackage, FrameworkHeadersMixin): fwlib.universal_archs = self.config.universal_archs fwlib.create() + def _package_name(self, suffix): + return '%s-%s-%s-%s%s' % (self.package.name, self.package.version, + self.config.target_platform, self.config.target_arch, suffix) + class Packager(object): |