From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: Re: [PATCH] gnu: Simplify dtc package definition. Date: Wed, 7 Sep 2016 11:01:41 +0200 Message-ID: <20160907110141.3b27eca7@scratchpost.org> References: <20160907074631.3771-1-dannym@scratchpost.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41478) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bhYju-000686-MX for guix-devel@gnu.org; Wed, 07 Sep 2016 05:01:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bhYjo-0004Ll-L4 for guix-devel@gnu.org; Wed, 07 Sep 2016 05:01:49 -0400 Received: from dd1012.kasserver.com ([85.13.128.8]:38597) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bhYjo-0004Lh-FU for guix-devel@gnu.org; Wed, 07 Sep 2016 05:01:44 -0400 In-Reply-To: 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: David Craven Cc: guix-devel Hi David, On Wed, 7 Sep 2016 10:15:29 +0200 David Craven wrote: > LGTM. Are these changes part of the debian patchset? No, I found out that GNU make allows you to override variables used inside Makefiles from make's command line. To test: write a Makefile containing: #----- PREFIX = /foo all: echo $(PREFIX) #----- Then try $ make PREFIX=/bar . It will override the variable.