From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Re: [PATCH] Add mcrypt Date: Sat, 24 May 2014 10:53:52 +0200 Message-ID: <20140524085352.GA16714@debian> References: <874n0fray8.fsf@member.fsf.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40049) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wo7iO-0007Rw-2B for Guix-devel@gnu.org; Sat, 24 May 2014 04:54:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wo7iG-00069B-JP for Guix-devel@gnu.org; Sat, 24 May 2014 04:54:04 -0400 Received: from mout.kundenserver.de ([212.227.17.10]:51132) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wo7iG-00068k-9s for Guix-devel@gnu.org; Sat, 24 May 2014 04:53:56 -0400 Content-Disposition: inline In-Reply-To: <874n0fray8.fsf@member.fsf.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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Eric Bavier Cc: Guix-devel@gnu.org On Sat, May 24, 2014 at 12:40:31AM -0500, Eric Bavier wrote: > + (native-inputs `(("file" ,file))) > + (arguments > + `(#:phases (alist-cons-before > + 'configure 'patch-configure > + (lambda _ > + (substitute* "configure" > + (("/usr/bin/file") > + (which "file")))) > + %standard-phases))) Is this really needed? Lots of packages using the autotools look for "file", and when it is not available, nothing bad seems to happen. I was told before to just not bother. Andreas