diff options
| author | Dariqq <dariqq@posteo.net> | 2025-10-27 11:43:48 +0000 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2026-01-12 22:42:10 +0100 |
| commit | 096ec2693e047ab8fc6139bcd65a9d8269fe306b (patch) | |
| tree | c43b9139c4cd2805e91f95595820b0c606e32e4b | |
| parent | f26735148aae8db07ee25ce7f09defc44e469e1e (diff) | |
build-system: meson: Properly name cross files.
* guix/build-system/meson.scm (make-cross-file): Add triplet and file
extension to the cross file.
Change-Id: Ie8ba187687670ec483cf4555a832590ec3ee8809
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
| -rw-r--r-- | guix/build-system/meson.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/build-system/meson.scm b/guix/build-system/meson.scm index 705fd1fa2b9..fe0e01c9593 100644 --- a/guix/build-system/meson.scm +++ b/guix/build-system/meson.scm @@ -116,7 +116,7 @@ TRIPLET." '())) (define (make-cross-file triplet) - (computed-file "cross-file" + (computed-file (string-append "cross-" triplet ".ini") (with-imported-modules '((guix build meson-configuration)) #~(begin (use-modules (guix build meson-configuration)) |
