See comment in gnu/build/icecat-extension.scm. --- a/toolkit/mozapps/extensions/internal/XPIDatabase.jsm +++ b/toolkit/mozapps/extensions/internal/XPIDatabase.jsm @@ -3452,6 +3452,7 @@ const XPIDatabaseReconcile = { if ( newAddon || oldAddon.updateDate != xpiState.mtime || + oldAddon.path != xpiState.path || (aUpdateCompatibility && this.isAppBundledLocation(installLocation)) ) { newAddon = this.updateMetadata( @@ -3460,8 +3461,6 @@ const XPIDatabaseReconcile = { xpiState, newAddon ); - } else if (oldAddon.path != xpiState.path) { - newAddon = this.updatePath(installLocation, oldAddon, xpiState); } else if (aUpdateCompatibility || aSchemaChange) { newAddon = this.updateCompatibility( installLocation, ko-scripts'>koszko-scripts Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/wine.scm
AgeCommit message (Expand)Author
2024-09-02gnu: wine64: Fix build....With the core-updates merge, the handling of modify-phases makes the current ordering a hard error. Make it so that phases are read from top to bottom. * gnu/packages/wine.scm (wine64)[#:phases]: Move ‘copy-wine32-binaries’ and ‘copy-wine32-libraries’ before conditional ‘wrap-executable’. <copy-wine32-manpage>: Use “.zst” instead of “.gz” as file ending. Liliana Marie Prikler
2024-06-24gnu: wine, wine64, wine-staging, wine64-staging: Enable wayland support....* gnu/packages/wine.scm (wine)[inputs]: Add libxkbcommon, mesa, wayland and wayland-protocols. Change-Id: I43bcca457abc9c38941df21db64e867b13260004 Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Sughosha