From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: [PATCH 5/5] gnu: gawk: Don't replace 'sh' reference with 'bash'. Date: Thu, 5 Jan 2017 11:28:51 -0500 Message-ID: <0f45e2850b53cae404df354b8bd62b9ee0ff061b.1483633538.git.leo@famulari.name> References: Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45368) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cPAuY-0003kz-AS for guix-devel@gnu.org; Thu, 05 Jan 2017 11:29:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cPAuT-0001Bv-Nn for guix-devel@gnu.org; Thu, 05 Jan 2017 11:29:06 -0500 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:37815) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cPAuT-0001Ba-K5 for guix-devel@gnu.org; Thu, 05 Jan 2017 11:29:01 -0500 Received: from localhost.localdomain (c-73-188-17-148.hsd1.pa.comcast.net [73.188.17.148]) by mail.messagingengine.com (Postfix) with ESMTPA id BF5562449E for ; Thu, 5 Jan 2017 11:29:00 -0500 (EST) In-Reply-To: In-Reply-To: References: 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 * gnu/packages/gawk.scm (gawk)[arguments]: Use /bin/sh instead of /bin/bash in 'set-shell-file-name' phase. --- gnu/packages/gawk.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/gawk.scm b/gnu/packages/gawk.scm index 86f01335a..280e3d3cf 100644 --- a/gnu/packages/gawk.scm +++ b/gnu/packages/gawk.scm @@ -47,7 +47,7 @@ (let ((bash (assoc-ref inputs "bash"))) (substitute* "io.c" (("/bin/sh") - (string-append bash "/bin/bash"))) + (string-append bash "/bin/sh"))) ;; When cross-compiling, remove dependencies on the ;; `check-for-shared-lib-support' target, which tries -- 2.11.0