guix_mirror_bot pushed a commit to branch haskell-team
in repository guix.
commit 1cc2b372b9eb02f741c997d7f07fd90050036d17
Author: Saku Laesvuori <[email protected]>
AuthorDate: Sun Aug 31 16:33:10 2025 +0300
gnu: patches: Fix recomp015 test in GHC testsuite
* gnu/packages/patches/ghc-testsuite-recomp015-execstack.patch: Append
non-executable stack marker to ManySections.s instead of replacing
the entire file with it.
Change-Id: I3c3cfbeb1a156412db7b4a633db2030fb0f0ee30
Signed-off-by: Lars-Dominik Braun <[email protected]>
---
gnu/packages/patches/ghc-testsuite-recomp015-execstack.patch | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/patches/ghc-testsuite-recomp015-execstack.patch
b/gnu/packages/patches/ghc-testsuite-recomp015-execstack.patch
index cdaf5b180d..0d4849f53e 100644
--- a/gnu/packages/patches/ghc-testsuite-recomp015-execstack.patch
+++ b/gnu/packages/patches/ghc-testsuite-recomp015-execstack.patch
@@ -4,7 +4,7 @@
# number of sections)
'$(TEST_HC)' $(TEST_HC_OPTS) Generate.hs
./Generate > ManySections.s
-+ echo '.section .note.GNU-stack,"",@progbits' > ManySections.s
++ echo '.section .note.GNU-stack,"",@progbits' >> ManySections.s
echo 'main = putStrLn "Running main..."' > Main.hs
'$(TEST_HC)' $(TEST_HC_OPTS) -c ManySections.s
'$(TEST_HC)' $(TEST_HC_OPTS) --make -O Main.hs ManySections.o