mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
utils: 'modify-phases' no longer introduces quotes.
Suggested by Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>. * guix/build/utils.scm (%modify-phases): Remove quotes. * guix/build/cmake-build-system.scm (%standard-phases): Adjust accordingly. * guix/build/glib-or-gtk-build-system.scm (%standard-phases): Likewise. * guix/build/gnu-dist.scm (%dist-phases): Likewise. * guix/build/perl-build-system.scm (%standard-phases): Likewise. * guix/build/python-build-system.scm (%standard-phases): Likewise. * guix/build/ruby-build-system.scm (%standard-phases): Likewise. * guix/build/waf-build-system.scm (%standard-phases): Likewise. * gnu/packages/bash.scm, gnu/packages/code.scm, gnu/packages/gl.scm, gnu/packages/gnome.scm, gnu/packages/graphics.scm, gnu/packages/image.scm, gnu/packages/key-mon.scm, gnu/packages/ocr.scm, gnu/packages/plotutils.scm, gnu/packages/search.scm, gnu/packages/video.scm: Likewise.
This commit is contained in:
parent
023dd28a30
commit
f8503e2b25
19 changed files with 62 additions and 62 deletions
|
@ -142,8 +142,8 @@ a large, deeply nested project.")
|
|||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:phases (modify-phases %standard-phases
|
||||
(delete configure)
|
||||
(add-before build make-dotl-files-older
|
||||
(delete 'configure)
|
||||
(add-before 'build 'make-dotl-files-older
|
||||
(lambda _
|
||||
;; Make the '.l' files as old as the '.c'
|
||||
;; files to avoid triggering the rule that
|
||||
|
@ -155,7 +155,7 @@ a large, deeply nested project.")
|
|||
(set-file-time file ref))
|
||||
(find-files "." "\\.[chl]$"))
|
||||
#t))
|
||||
(add-before install make-target-directories
|
||||
(add-before 'install 'make-target-directories
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out")))
|
||||
(mkdir-p (string-append out "/bin"))
|
||||
|
@ -163,7 +163,7 @@ a large, deeply nested project.")
|
|||
"/share/man/man1"))
|
||||
(mkdir-p (string-append out
|
||||
"/share/doc")))))
|
||||
(replace check
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(setenv "HOME" (getcwd))
|
||||
(setenv "PATH"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue