From mboxrd@z Thu Jan 1 00:00:00 1970 From: Manolis Ragkousis Subject: Re: [PATCH 2/2] gnu: Add the Hurd. Date: Sun, 9 Apr 2017 09:55:01 +0300 Message-ID: <1863af86-cb40-73e4-830e-4ac31e1a4ed7@gmail.com> References: <20170408140657.654-1-manolis837@gmail.com> <20170408140657.654-2-manolis837@gmail.com> <20170409024136.GA2700@macbook42.flashner.co.il> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38022) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cx6kf-0006Tt-5a for guix-devel@gnu.org; Sun, 09 Apr 2017 02:55:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cx6kb-0005Pq-BN for guix-devel@gnu.org; Sun, 09 Apr 2017 02:55:09 -0400 Received: from mail-wr0-x242.google.com ([2a00:1450:400c:c0c::242]:35774) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cx6kb-0005Pd-3w for guix-devel@gnu.org; Sun, 09 Apr 2017 02:55:05 -0400 Received: by mail-wr0-x242.google.com with SMTP id t20so25152626wra.2 for ; Sat, 08 Apr 2017 23:55:04 -0700 (PDT) In-Reply-To: <20170409024136.GA2700@macbook42.flashner.co.il> Content-Language: en-US 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: Efraim Flashner Cc: guix-devel@gnu.org Hello Efraim, On 04/09/17 05:41, Efraim Flashner wrote: > On Sat, Apr 08, 2017 at 05:06:57PM +0300, manolis837@gmail.com wrote: >> From: Manolis Ragkousis >> >> + (modify-phases %standard-phases >> + (add-before 'build 'pre-build >> + (lambda _ >> + ;; Don't change the ownership of any file at this time. >> + (substitute* "daemons/Makefile" >> + (("-o root -m 4755") "")) >> + (substitute* "utils/Makefile" >> + (("-o root -m 4755") "")) >> + #t))) > > These substitute* lines could be written as: > (substitute* '("daemons/Makefile" "utils/Makefile") > (("-o root -m 4775") "")) > Yes you are right. I will fix it and push to master. :) Manolis