summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/web.scm6
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index cfc8514c79c..4ba19a8dcc2 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -2528,8 +2528,10 @@ UTS#46.")
2528 #:import-path "github.com/evanw/esbuild/cmd/esbuild" 2528 #:import-path "github.com/evanw/esbuild/cmd/esbuild"
2529 #:unpack-path "github.com/evanw/esbuild" 2529 #:unpack-path "github.com/evanw/esbuild"
2530 #:test-flags #~(list #$(if (and (target-64bit?) 2530 #:test-flags #~(list #$(if (and (target-64bit?)
2531 ;; The -race option is not supported on riscv64 2531 ;; The -race option is not supported on
2532 (not (target-riscv64?))) 2532 ;; riscv64 and is not present in gccgo.
2533 (not (target-riscv64?))
2534 (supported-package? go))
2533 "-race" "-short")) 2535 "-race" "-short"))
2534 ;; Test subdirectories are compiled from #:import-path. 2536 ;; Test subdirectories are compiled from #:import-path.
2535 #:test-subdirs #~(list "../../internal/..." "../../pkg/..." ))) 2537 #:test-subdirs #~(list "../../internal/..." "../../pkg/..." )))