guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Patch path to locale in gnome-desktop.


From: Christopher Baines
Subject: 01/01: gnu: Patch path to locale in gnome-desktop.
Date: Tue, 21 Nov 2017 03:45:57 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit a0fe7c06452ad89d15e38ba2b698228f4fe3a76d
Author: Christopher Baines <address@hidden>
Date:   Mon Nov 20 20:40:49 2017 +0000

    gnu: Patch path to locale in gnome-desktop.
    
    * gnu/packages/gnome.scm (gnome-desktop)[arguments]: Add 'patch-path phase 
to
      get libgnome-desktop to use the full path to the locale binary.
---
 gnu/packages/gnome.scm | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 25e0e8f..86ec22d 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -454,6 +454,16 @@ commonly used macros.")
        (base32
         "0pkq5l1llw8gkjhfq6y58iyj6wac8dh1mc3rzjzn6nd7lrkdx8cg"))))
     (build-system gnu-build-system)
+    (arguments
+     '(#:phases
+       (modify-phases %standard-phases
+         (add-before 'configure 'patch-path
+           (lambda* (#:key inputs #:allow-other-keys)
+             (let ((libc   (assoc-ref inputs "libc")))
+               (substitute* "libgnome-desktop/gnome-languages.c"
+                 (("\"locale\"")
+                  (string-append "\"" libc "/bin/locale\"")))
+               #t))))))
     (native-inputs
      `(("gobject-introspection" ,gobject-introspection)
        ("itstool" ,itstool)



reply via email to

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