Hi Julien, Julien Lepiller writes: > Le Sat, 12 Jun 2021 20:54:49 +0100, > Pierre Langlois a écrit : > >> + (arguments >> + (substitute-keyword-arguments (package-arguments openjdk15) >> + ((#:phases phases) >> + `(modify-phases ,phases >> + (add-after 'unpack 'make-templates-writable >> + (lambda _ >> + ;; The build system copies a few .template files from >> the >> + ;; source directory into the build directory and then >> modifies >> + ;; them in-place. So these files have to be writable. >> + (for-each >> + (lambda (file) >> + (invoke "chmod" "u+w" file)) >> + (find-files >> "src/java.base/share/classes/jdk/internal/misc/" >> + "\\.template")) > > Should be "\\.template$", otherwise the whole series LGTM! Thanks for the review! Fixed and pushed with afd4924d6a64c01a1d5138954b9f22c9bd4f4690. Pierre