Frank Pursel schreef op do 17-03-2022 om 14:08 [-0700]: > +       (snippet '(begin > +                   ;; Removing bundled jars > +                   (format #t "~%~a~%" "Removing Bundled Jars") Isn't this equivalent to (display "Removing bundled jars\n")? > +                   (for-each > +                    (lambda (f) > +                      (format #t "~/Deleting: ~a~%" f) Why ~/? > +                      (delete-file f)) > +                    (find-files "." "\\.jar$")))))) FWIW, while this is useful for testing whether the unbundling works (*) while developing the patch, I personally don't see the point of keeping the 'format' afterwards. (*) alternatively, you can do "guix build --source java-xalan" to test. Greetings, Maxime.