From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH] Add Faust and Guitarix. Date: Tue, 16 Jun 2015 09:56:06 +0200 Message-ID: <87wpz4ytm1.fsf@gnu.org> References: <87wpz6i72q.fsf@elephly.net> <87wpz6gm6l.fsf@gmail.com> <87si9shfzu.fsf@netris.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47076) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z4ljB-0002oA-A8 for guix-devel@gnu.org; Tue, 16 Jun 2015 03:56:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z4lj7-0005UC-Ad for guix-devel@gnu.org; Tue, 16 Jun 2015 03:56:13 -0400 In-Reply-To: <87si9shfzu.fsf@netris.org> (Mark H. Weaver's message of "Mon, 15 Jun 2015 16:29:57 -0400") 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: Mark H Weaver Cc: guix-devel@gnu.org, Alex Kost Mark H Weaver skribis: > Alex Kost writes: > >> Ricardo Wurmus (2015-06-14 19:32 +0300) wrote: >> >> [...] >>> + (build-system gnu-build-system) >>> + (arguments >>> + `(#:make-flags (list (string-append "prefix=3D" (assoc-ref %outpu= ts "out"))) >> >> I think it is clearer to use just '%output': >> >> `(#:make-flags (list (string-append "prefix=3D" %output))) > > I've been wondering about this as well. It seems that Ludovic often > (usually?) writes (assoc-ref %outputs "out"), and I wonder why. One > possible reason is that it makes it obvious how to get the filename of > other outputs. Right, I usually avoid %output (singular) because it=E2=80=99s a special ca= se of %outputs, so I prefer using %outputs. Ludo=E2=80=99.