diff options
author | Mathieu Othacehe <m.othacehe@gmail.com> | 2017-07-06 10:03:16 +0200 |
---|---|---|
committer | Mathieu Othacehe <m.othacehe@gmail.com> | 2017-07-06 10:03:16 +0200 |
commit | d7dc7cb92cc88ed3a245e628b424953206a3f784 (patch) | |
tree | 92860bd92e5ec1cb581b8be886e50b839763342d /build-aux | |
parent | 4666142ca57c15ef89759fb22511ab4c1b96ece9 (diff) | |
download | cuirass-d7dc7cb92cc88ed3a245e628b424953206a3f784.tar cuirass-d7dc7cb92cc88ed3a245e628b424953206a3f784.tar.gz |
cuirass: Stop λ/lambda mixing.
* bin/cuirass.in: Replace λ by lambda.
* bin/evaluate.in: Ditto.
* build-aux/guix.scm: Ditto.
* examples/gnu-system.scm: Ditto.
* examples/guix-track-git.scm: Ditto.
* src/cuirass.scm: Ditto.
* src/cuirass/base.scm: Ditto.
* src/cuirass/database.scm: Ditto.
* src/cuirass/ui.scm: Ditto.
* src/cuirass/utils.scm: Remove λ* macro.
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/guix.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build-aux/guix.scm b/build-aux/guix.scm index 57ba8ab..feb6670 100644 --- a/build-aux/guix.scm +++ b/build-aux/guix.scm @@ -27,10 +27,10 @@ ;; Return #t if FILE in Cuirass repository must be kept, #f otherwise. FILE ;; is an absolute file name and STAT is the result of 'lstat' applied to ;; FILE. - (not (or (any (λ (str) (string-contains file str)) + (not (or (any (lambda (str) (string-contains file str)) '(".git" "autom4te" "Makefile.in" ".go" ".log" "stamp-vti" ".dirstamp")) - (any (λ (str) (string-suffix? str file)) + (any (lambda (str) (string-suffix? str file)) '("trs""configure" "Makefile" "config.status" "pre-inst-env" "aclocal.m4" "bin/cuirass" "bin/evaluate" "config.cache" "guix.scm"))))) @@ -61,7 +61,7 @@ '(#:phases (modify-phases %standard-phases (add-before 'configure 'bootstrap - (λ _ (zero? (system* "sh" "bootstrap")))) + (lambda _ (zero? (system* "sh" "bootstrap")))) (add-after 'install 'wrap-program (lambda* (#:key inputs outputs #:allow-other-keys) ;; Wrap the 'cuirass' command to refer to the right modules. |