[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55605] [PATCH 1/2] gnu: Add qbe.
From: |
Maxime Devos |
Subject: |
[bug#55605] [PATCH 1/2] gnu: Add qbe. |
Date: |
Tue, 24 May 2022 18:56:50 +0200 |
User-agent: |
Evolution 3.38.3-1 |
Antero Mejr via Guix-patches via schreef op ma 23-05-2022 om 21:21 [-
0400]:
> + (arguments
> + `(#:tests? #f ;no test suite
> + #:make-flags
> + (list (string-append "CC="
> + ,(cc-for-target))
> + (string-append "DESTDIR="
> + (assoc-ref %outputs "out"))
> + "PREFIX=")
Guix doesn't use this kind of staging, "PREFIX=" (assoc-ref %outputs
"out") should be sufficient, no need for DESTDIR. And the somewhat
obscure 'assoc-ref' can be eliminated and the strata made more explicit
with gexps:
(arguments
(list #:tests? #f ;...
#:make-flags
#~(list (string-append "CC=" #$(cc-for-target))
(string-append "PREFIX=" #$output))))
signature.asc
Description: This is a digitally signed message part
- [bug#55605] [PATCH 1/2] gnu: Add qbe., Antero Mejr, 2022/05/23
- [bug#55606] [PATCH 2/2] gnu: Add hare., Antero Mejr, 2022/05/23
- [bug#55606] [PATCH 2/2] gnu: Add hare., Maxime Devos, 2022/05/24
- [bug#55606] [PATCH 2/2] gnu: Add hare., Maxime Devos, 2022/05/24
- [bug#55606] [PATCH 2/2] gnu: Add hare., Maxime Devos, 2022/05/24
- [bug#55606] [PATCH 2/2] gnu: Add hare., Tobias Geerinckx-Rice, 2022/05/24
- [bug#55606] [PATCH] gnu: Add hare., Antero Mejr, 2022/05/28
- [bug#55605] [PATCH 1/2] gnu: Add qbe.,
Maxime Devos <=
- [bug#55605] [PATCH 1/2] gnu: Add qbe., Maxime Devos, 2022/05/24