diff options
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/graphics.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index 8686cac7f7..f33e9d3fcb 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -37,6 +37,7 @@ ;;; Copyright © 2023 David Thompson <dthompson2@worcester.edu> ;;; Copyright © 2023 Eric Bavier <bavier@posteo.net> ;;; Copyright © 2023, 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com> +;;; Copyright © 2024 Ivan Vilata-i-Balaguer <ivan@selidor.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -1642,7 +1643,9 @@ in Julia).") (setenv "HOME" (getcwd)) (with-directory-excursion "unix" (substitute* "prebuild.sh" - (("/bin/sh") (which "sh"))) + (("/bin/sh") (which "sh")) + ;; Make test run non-interactive. + (("biscuit.pov -f \\+d \\+p \\+v") "biscuit.pov -f +v")) (invoke "sh" "prebuild.sh")))) ;; The bootstrap script is run by the prebuild script in the ;; "run-prebuild" phase. |