[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] build: file-systems: Allow for bind mounting regular files.
From: |
Thompson, David |
Subject: |
Re: [PATCH] build: file-systems: Allow for bind mounting regular files. |
Date: |
Sun, 2 Aug 2015 08:51:46 -0400 |
On Sun, Aug 2, 2015 at 8:43 AM, Thompson, David
<address@hidden> wrote:
> On Sun, Aug 2, 2015 at 8:10 AM, Alex Kost <address@hidden> wrote:
>> David Thompson (2015-08-01 22:17 +0300) wrote:
>>
>>> diff --git a/gnu/build/file-systems.scm b/gnu/build/file-systems.scm
>>> index c58d23c..f0d6f70 100644
>>> --- a/gnu/build/file-systems.scm
>>> +++ b/gnu/build/file-systems.scm
>>> @@ -305,6 +305,10 @@ the following:
>>> fsck code device)
>>> (start-repl)))))
>>>
>>> +(define (regular-file? file-name)
>>> + "Return #t if FILE-NAME is a regular file."
>>> + (eq? (stat:type (stat file-name)) 'regular))
>>
>> There are similar procedures in (guix build utils): 'directory-exists?',
>> 'executable-file?' and 'symbolic-link?'. So I think it is better to put
>> 'regular-file?' there. WDYT?
>
> Sure, that makes sense. Done.
Ah, of course, I forgot about something: This patch triggers a
rebuild of *everything* now! I guess it should be applied to
core-updates. Or, the first patch I submitted can be applied to
master, and then a patch that moves 'regular-file?' to (guix build
utils) can be applied to core-updates later.
Thoughts?
- Dave
- [PATCH] build: file-systems: Allow for bind mounting regular files., David Thompson, 2015/08/01
- Re: [PATCH] build: file-systems: Allow for bind mounting regular files., Alex Kost, 2015/08/02
- Re: [PATCH] build: file-systems: Allow for bind mounting regular files., Thompson, David, 2015/08/02
- Re: [PATCH] build: file-systems: Allow for bind mounting regular files.,
Thompson, David <=
- Re: [PATCH] build: file-systems: Allow for bind mounting regular files., Andreas Enge, 2015/08/02
- Re: [PATCH] build: file-systems: Allow for bind mounting regular files., Alex Kost, 2015/08/03
- Re: [PATCH] build: file-systems: Allow for bind mounting regular files., Thompson, David, 2015/08/06
- Re: [PATCH] build: file-systems: Allow for bind mounting regular files., Alex Kost, 2015/08/07
- Re: [PATCH] build: file-systems: Allow for bind mounting regular files., Ludovic Courtès, 2015/08/18
- Re: [PATCH] build: file-systems: Allow for bind mounting regular files., Thompson, David, 2015/08/18
Re: [PATCH] build: file-systems: Allow for bind mounting regular files., Thompson, David, 2015/08/08