summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDariqq <dariqq@posteo.net>2026-08-23 09:08:55 +0000
committerAndreas Enge <andreas@enge.fr>2026-08-24 16:09:08 +0200
commit33e568793efae4557015b7d1211e0c4983afab39 (patch)
tree6c56ff9afab7537f48554c950ef463184ed40f9f
parentf2f9b4030a591949aada0b78b76a745e01b9ffd1 (diff)
gnu: dmd: Fix build on i686-linux.
* gnu/packages/dlang.scm (dmd-bootstrap)[arguments]: Fix quoting when skipping tests. Signed-off-by: Andreas Enge <andreas@enge.fr>
-rw-r--r--gnu/packages/dlang.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/dlang.scm b/gnu/packages/dlang.scm
index 634e6c730c3..53120625ecc 100644
--- a/gnu/packages/dlang.scm
+++ b/gnu/packages/dlang.scm
@@ -622,9 +622,9 @@ This compiler is based on the DMD frontend version 2.112.1.")
622 ;; tries to debug 64bit executable 622 ;; tries to debug 64bit executable
623 ;; not in executable format: file format not recognized 623 ;; not in executable format: file format not recognized
624 #$@(if (target-32bit?) 624 #$@(if (target-32bit?)
625 #~(delete-file 625 #~((delete-file
626 (string-append "dmd/compiler/test/runnable" 626 (string-append "dmd/compiler/test/runnable"
627 "/gdb_slice_debuginfo_64.d")) 627 "/gdb_slice_debuginfo_64.d")))
628 #~()) 628 #~())
629 629
630 ;; Locations in stack traces are broken for some reason, 630 ;; Locations in stack traces are broken for some reason,