diff options
author | 宋文武 <[email protected]> | 2025-03-05 18:08:07 +0800 |
---|---|---|
committer | 宋文武 <[email protected]> | 2025-03-05 19:22:07 +0800 |
commit | 92a3a6bdec17fd50c6bed97e8f626df64d8bad6e (patch) | |
tree | 4a32f9873587b5499a5769686d6c6ae63e74b184 | |
parent | 92f0049f043f68ab896f6a276dec6562319f0348 (diff) |
gnu: dosbox-staging: Fix SIGBART under Sway/Xwayland.
* gnu/packages/emulators.scm (dosbox-staging) [arguments]: Set build-type to
release. Remove obsolute phases.
Change-Id: I80fdbb51db3b3373f4d2e299e3951820b2dbb97f
-rw-r--r-- | gnu/packages/emulators.scm | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm index fc31a42934..2bed105653 100644 --- a/gnu/packages/emulators.scm +++ b/gnu/packages/emulators.scm @@ -583,13 +583,9 @@ older games.") (base32 "1s4c6fiyjm91dnmkval9fvsqszc6yjq5b6pq895xi606dn29b85d")))) (build-system meson-build-system) (arguments - (list #:phases - #~(modify-phases %standard-phases - (add-after 'unpack 'skip-failing-tests - (lambda _ - (substitute* "tests/meson.build" - ;; XXX: This test fails with "Segmentation fault". - (("[{].*'shell_cmds'.*,") ""))))))) + ;; XXX: When build with debugoptimized, some assertions and tests will + ;; fail. + (list #:build-type "release")) (native-inputs (list pkg-config)) (inputs |