guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: icedove: Truly prevent it from generating a


From: guix-commits
Subject: branch master updated: gnu: icedove: Truly prevent it from generating a new profile on every upgrade.
Date: Mon, 20 Feb 2023 13:44:04 -0500

This is an automated email from the git hooks/post-receive script.

apteryx pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new c81d2d448c gnu: icedove: Truly prevent it from generating a new 
profile on every upgrade.
c81d2d448c is described below

commit c81d2d448cbd051800867fe3f4b82ef3f4380ebf
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Mon Feb 20 12:20:36 2023 -0500

    gnu: icedove: Truly prevent it from generating a new profile on every 
upgrade.
    
    This fixes a regression introduced in 52cb5cf5b8 ("gnu: icedove: Update to
    91.3.2") where the single quotes moved to double quotes, but the substitute*
    pattern was not correctly adapted.
    
    Fixes <https://issues.guix.gnu.org/53250>.
    
    * gnu/packages/gnuzilla.scm (icedove-minimal)
    [phases] {fix-profile-setting}: Include double qutoes in substitute* pattern
    targeting the MOZ_DEDICATED_PROFILES configuration option.
---
 gnu/packages/gnuzilla.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm
index eb6395cb56..5fb9afa325 100644
--- a/gnu/packages/gnuzilla.scm
+++ b/gnu/packages/gnuzilla.scm
@@ -1335,8 +1335,8 @@ ca495991b7852b855"))
           (add-after 'patch-source-shebangs 'fix-profile-setting
             (lambda _
               (substitute* "comm/mail/moz.configure"
-                (("MOZ_DEDICATED_PROFILES, True")
-                 "MOZ_DEDICATED_PROFILES, False"))))
+                (("\"MOZ_DEDICATED_PROFILES\", True")
+                 "\"MOZ_DEDICATED_PROFILES\", False"))))
           (add-after 'build 'neutralize-store-references
             (lambda _
               ;; Mangle the store references to compilers & other build tools 
in



reply via email to

[Prev in Thread] Current Thread [Next in Thread]