[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 2/2] gnu: Add the Hurd.
From: |
Manolis Ragkousis |
Subject: |
Re: [PATCH 2/2] gnu: Add the Hurd. |
Date: |
Sun, 9 Apr 2017 09:55:01 +0300 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.0 |
Hello Efraim,
On 04/09/17 05:41, Efraim Flashner wrote:
> On Sat, Apr 08, 2017 at 05:06:57PM +0300, address@hidden wrote:
>> From: Manolis Ragkousis <address@hidden>
>>
>> + (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