guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: arc-theme: Placate Inkscape.


From: guix-commits
Subject: branch master updated: gnu: arc-theme: Placate Inkscape.
Date: Sat, 01 Feb 2020 00:27:45 -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 4690e3a  gnu: arc-theme: Placate Inkscape.
4690e3a is described below

commit 4690e3a4ec41e4e3dc46c6f7045bea978533d8f3
Author: Maxim Cournoyer <address@hidden>
AuthorDate: Mon Jan 6 20:19:06 2020 -0500

    gnu: arc-theme: Placate Inkscape.
    
    This gets rid of Inkscape's warnings printed during the build when HOME is 
not
    set to a writable directory.
    
    * gnu/packages/gnome.scm (arc-theme)[phases]{set-home}: New phase.
---
 gnu/packages/gnome.scm | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index e843bdf..e19caf6 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -39,7 +39,7 @@
 ;;; Copyright © 2019 Giacomo Leidi <address@hidden>
 ;;; Copyright © 2019 Jelle Licht <address@hidden>
 ;;; Copyright © 2019 Jonathan Frederickson <address@hidden>
-;;; Copyright © 2019 Maxim Cournoyer <address@hidden>
+;;; Copyright © 2019, 2020 Maxim Cournoyer <address@hidden>
 ;;; Copyright © 2019 Martin Becze <address@hidden>
 ;;; Copyright © 2019 David Wilson <address@hidden>
 ;;; Copyright © 2019, 2020 Raghav Gururajan <address@hidden>
@@ -8302,7 +8302,11 @@ functionality and behavior.")
        (modify-phases %standard-phases
          ;; autogen.sh calls configure at the end of the script.
          (replace 'bootstrap
-           (lambda _ (invoke "autoreconf" "-vfi"))))))
+           (lambda _ (invoke "autoreconf" "-vfi")))
+         (add-before 'build 'set-home   ;placate Inkscape
+           (lambda _
+             (setenv "HOME" (getcwd))
+             #t)))))
     (native-inputs
      `(("autoconf" ,autoconf)
        ("automake" ,automake)



reply via email to

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