From 096ec2693e047ab8fc6139bcd65a9d8269fe306b Mon Sep 17 00:00:00 2001 From: Dariqq Date: Mon, 27 Oct 2025 11:43:48 +0000 Subject: [PATCH] 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 --- guix/build-system/meson.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guix/build-system/meson.scm b/guix/build-system/meson.scm index 705fd1fa2b989ef0b639f1531fb85c60cfc6b54e..fe0e01c95939f98638ca44bb75d0a04befd2f016 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))