~ salmonella-environment-setup (master) 7f2bf01aaa370abdc6abcdfe617e5a7e782c2536


commit 7f2bf01aaa370abdc6abcdfe617e5a7e782c2536
Author:     Mario Domenech Goulart <mario@parenteses.org>
AuthorDate: Sat Nov 11 20:31:53 2023 +0100
Commit:     Mario Domenech Goulart <mario@parenteses.org>
CommitDate: Sat Nov 11 20:32:02 2023 +0100

    common/chicken-5.scm: Add transducers to skip-eggs
    
    transducers is causing chicken to go into an endless loop (Felix is
    looking into the problem).

diff --git a/conf/common/chicken-5.scm b/conf/common/chicken-5.scm
index 0ca374b..4f4ef47 100644
--- a/conf/common/chicken-5.scm
+++ b/conf/common/chicken-5.scm
@@ -28,6 +28,10 @@
     ((linux) '(pledge unveil)))
   (skip-eggs)))
 
+;; transducers is causing chicken to go into an endless loop (Felix is
+;; looking into the problem)
+(skip-eggs (cons 'transducers (skip-eggs)))
+
 ;;; Uncomment the lines below to quickly test the workflow (skip
 ;;; building CHICKEN and only test one egg)
 ;;
Trap