guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH core-updates 6/6] utils: Add helper method to make files writ


From: Ludovic Courtès
Subject: Re: [PATCH core-updates 6/6] utils: Add helper method to make files writable.
Date: Thu, 26 Jan 2017 10:50:50 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux)

Marius Bakke <address@hidden> skribis:

> * gnu/build/activation.scm (make-file-writable): Move this to ...
> * guix/build/utils.scm (make-file-writable): ... here. Export it.
> * guix/build/gnu-build-system.scm (strip): Use it.

[...]

> --- a/guix/build/gnu-build-system.scm
> +++ b/guix/build/gnu-build-system.scm
> @@ -393,8 +393,10 @@ makefiles."
>                       (or (elf-file? file) (ar-file? file))
>                       (or (not debug-output)
>                           (make-debug-file file))
> -                     ;; Ensure libraries are writable.
> -                     (chmod file #o755)
> +
> +                     ;; Ensure the file is writable.
> +                     (make-file-writable file)

The return value of ‘chmod’ and ‘make-file-writable’ is unspecified, so
you need to write:

  (begin (make-file-writable file) #t)

> +(define (make-file-writable file)
> +  "Make FILE writable for its owner.."
                                      ^
Take it as an opportunity to remove this extra period.  :-)

Otherwise LGTM.

Ludo’.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]