diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-10-15 16:01:31 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2013-11-09 10:19:46 +0100 |
commit | 7a9dcab137ef24e8244374bd969d88638b64b98c (patch) | |
tree | 9fa9ec25e508ef1abfadb3b0ec012b90b91e7b02 | |
parent | 1c7c0603aa9e960c8d9ddd739cffebdf22c6a547 (diff) |
wix: do not append the arch name in the install dir
-rw-r--r-- | cerbero/packages/wix.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cerbero/packages/wix.py b/cerbero/packages/wix.py index 0e1c4110..8ff4d68f 100644 --- a/cerbero/packages/wix.py +++ b/cerbero/packages/wix.py @@ -284,7 +284,7 @@ class WixConfig(WixBase): return config_out_path def _product_name(self): - return '%s (%s)' % (self.package.shortdesc, self._platform()) + return '%s' % self.package.shortdesc def _program_folder(self): if self.arch == Architecture.X86: |