From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Jovany Leandro G.C" Subject: [PATCH] Fix gnome-autogen.sh on gnome-common Date: Sat, 11 Jun 2016 21:34:31 -0500 Message-ID: <20160611213431.6cc05351@riseup.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/z=7QY5ZFbLlOLCuRCjtj9wp" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47960) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bBvEY-0002LE-U3 for guix-devel@gnu.org; Sat, 11 Jun 2016 22:34:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bBvEV-0001jr-2d for guix-devel@gnu.org; Sat, 11 Jun 2016 22:34:42 -0400 Received: from mx1.riseup.net ([198.252.153.129]:48744) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bBvEU-0001je-Nq for guix-devel@gnu.org; Sat, 11 Jun 2016 22:34:38 -0400 Received: from piha.riseup.net (unknown [10.0.1.163]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id AB0041A25AA for ; Sun, 12 Jun 2016 02:34:36 +0000 (UTC) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org --MP_/z=7QY5ZFbLlOLCuRCjtj9wp Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline 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) --MP_/z=7QY5ZFbLlOLCuRCjtj9wp Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0001-gnu-gnome-Fix-gnome-autogen.sh.patch >From f9d585eb60a5261dd38d6a4fc5e5d443abc91ed9 Mon Sep 17 00:00:00 2001 From: "Jovany Leandro G.C" 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 --MP_/z=7QY5ZFbLlOLCuRCjtj9wp--