From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: wip spamassassin Date: Thu, 28 Jul 2016 17:47:43 -0400 Message-ID: <20160728214743.GC13295@jasmine> References: <20160727005058.63ff3252@scratchpost.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40392) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bSt9q-0005JZ-4r for guix-devel@gnu.org; Thu, 28 Jul 2016 17:47:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bSt9l-0000mI-TA for guix-devel@gnu.org; Thu, 28 Jul 2016 17:47:57 -0400 Received: from out5-smtp.messagingengine.com ([66.111.4.29]:41232) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bSt9k-0000m3-N7 for guix-devel@gnu.org; Thu, 28 Jul 2016 17:47:53 -0400 Content-Disposition: inline In-Reply-To: <20160727005058.63ff3252@scratchpost.org> 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: Danny Milosavljevic Cc: guix-devel@gnu.org On Wed, Jul 27, 2016 at 12:50:58AM +0200, Danny Milosavljevic wrote: > ./configure: line 5848: /bin/sh: No such file or directory I recommend you try adapting the 'patch-config-files' phase from the Vim package definition in (gnu packages vim): #:phases (modify-phases %standard-phases (add-after 'configure 'patch-config-files (lambda _ (substitute* "runtime/tools/mve.awk" (("/usr/bin/nawk") (which "gawk"))) (substitute* "src/testdir/Makefile" (("/bin/sh") (which "sh")))))))) I hope that helps!