diff options
| -rw-r--r-- | CHANGELOG.md | 4 | ||||
| -rw-r--r-- | gui/tasks/distribution.js | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b095497ee..1fe3de44c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -58,6 +58,10 @@ Line wrap the file at 100 chars. Th #### macOS - Fix tray window behaviour when opening mission control and switching between full-screen workspaces. +#### Linux +- Fix RPM package containing unecessary files causing conflicts with other electron-builder based + packages. + ## [2023.3] - 2023-04-05 ### Changed diff --git a/gui/tasks/distribution.js b/gui/tasks/distribution.js index 27223df42e..3eb26cb876 100644 --- a/gui/tasks/distribution.js +++ b/gui/tasks/distribution.js @@ -202,6 +202,10 @@ const config = { rpm: { fpm: [ + // Prevents RPM from packaging build-id metadata, some of which is the + // same across all electron-builder applications, which causes package + // conflicts + '--rpm-rpmbuild-define=_build_id_links none', '--directories=/opt/Mullvad VPN/', '--before-install', distAssets('linux/before-install.sh'), |
