all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH] Fix gnome-autogen.sh on gnome-common
@ 2016-06-12  2:34 Jovany Leandro G.C
  2016-06-12 11:34 ` 宋文武
  0 siblings, 1 reply; 2+ messages in thread
From: Jovany Leandro G.C @ 2016-06-12  2:34 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 183 bytes --]

hi,

This patch fix /bin/sh for gnome-autogen.sh


-- 
Jovany Leandro G.C
Desarrollador de Software
github: http://github.com/bit4bit
Se libre usa GNU Linux-libre (http://www.gnu.org)

[-- Attachment #2: 0001-gnu-gnome-Fix-gnome-autogen.sh.patch --]
[-- Type: text/x-patch, Size: 1190 bytes --]

From f9d585eb60a5261dd38d6a4fc5e5d443abc91ed9 Mon Sep 17 00:00:00 2001
From: "Jovany Leandro G.C" <bit4bit@riseup.net>
Date: Sat, 11 Jun 2016 21:07:13 -0500
Subject: [PATCH] gnu: gnome: Fix gnome-autogen.sh

* gnu/packages/gnome.scm (gnome-common):
[arguments]: Use modify-phases. substitute harcode "/bin/sh"
---
 gnu/packages/gnome.scm | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index c87c371..b371d0b 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -228,6 +228,13 @@ formats like PNG, SVG, PDF and EPS.")
         (base32
          "1kzqi8qvh5p1zncj8msazlmvcwsczjz2hqxp4x2y0mg718vrwmi2"))))
     (build-system gnu-build-system)
+    (arguments
+     `(#:phases (modify-phases %standard-phases
+                  (add-after 'unpack 'autogen
+                    (lambda _
+                      (substitute* "macros2/gnome-autogen.sh"
+                        (("/bin/sh") (which "sh")))
+                      #t)))))
     (home-page "https://www.gnome.org/")
     (synopsis "Bootstrap GNOME modules built from Git")
     (description "gnome-common contains various files needed to bootstrap
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] Fix gnome-autogen.sh on gnome-common
  2016-06-12  2:34 [PATCH] Fix gnome-autogen.sh on gnome-common Jovany Leandro G.C
@ 2016-06-12 11:34 ` 宋文武
  0 siblings, 0 replies; 2+ messages in thread
From: 宋文武 @ 2016-06-12 11:34 UTC (permalink / raw)
  To: Jovany Leandro G.C; +Cc: guix-devel

"Jovany Leandro G.C" <bit4bit@riseup.net> writes:

> hi,
>
> This patch fix /bin/sh for gnome-autogen.sh
>
>
Hi, this is unnecessary, the '/bin/sh' shebang will be patched by
the 'patch-source-shebangs' phase of gnu-build-system.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-06-12 11:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-12  2:34 [PATCH] Fix gnome-autogen.sh on gnome-common Jovany Leandro G.C
2016-06-12 11:34 ` 宋文武

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.