From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pjotr Prins Subject: Re: [PATCH] gnu: Add slurm-llnl. Date: Fri, 12 Feb 2016 13:20:42 +0100 Message-ID: <20160212122042.GA14275@thebird.nl> References: <56bb7530.v5bvas2QpzoMjKMl%pjotr.public12@thebird.nl> <20160210220447.0917f1a1@openmailbox.org> <20160211081534.GA8987@thebird.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47985) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aUCjE-0002On-2N for guix-devel@gnu.org; Fri, 12 Feb 2016 07:21:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aUCjA-0006dn-T2 for guix-devel@gnu.org; Fri, 12 Feb 2016 07:21:39 -0500 Received: from mail.thebird.nl ([95.154.246.10]:45583) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aUCjA-0006cg-NQ for guix-devel@gnu.org; Fri, 12 Feb 2016 07:21:36 -0500 Content-Disposition: inline In-Reply-To: <20160211081534.GA8987@thebird.nl> 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: Pjotr Prins Cc: guix-devel@gnu.org On Thu, Feb 11, 2016 at 09:15:34AM +0100, Pjotr Prins wrote: > > > + (build-system gnu-build-system) > > > + (arguments > > > + `(#:configure-flags '("--enable-pam") > > > + #:phases > > > + (modify-phases %standard-phases > > > + (add-before > > > + 'configure 'rewrite-usr-bin > > > + (lambda* (#:key inputs #:allow-other-keys) > > > + (substitute* "./doc/html/shtml2html.py" > > > + (("#!/usr/bin/env python") > > > + (string-append "#!" (which "python3")))) > > > > Is this shebang not handled by the patch-shebangs phase? > > I added it because the build failed. I'll try again. Now I remember. The python3 package does not have python in the path. So I patch it with python3. Pj.