diff --git a/Makefile b/Makefile index 8170d8af..ecf0b7d7 100644 --- a/Makefile +++ b/Makefile @@ -100,7 +100,11 @@ ocaml: cp -r "$$(ocamlfind query ocaml-src)" $@ VERSION="$$(head -n1 ocaml/VERSION)" ; \ if test -d "patches/$$VERSION" ; then \ - git apply --directory=$@ "patches/$$VERSION"/*; \ + git init -q && \ + for p in "patches/$$VERSION"/*; do \ + ( set -x ; git apply -v --directory=$@ "$$p" \ + ; echo " PATCH $$p: $$?") ; \ + done ; \ fi ocaml/Makefile.config: $(LIBS) $(TOOLCHAIN_FOR_BUILD) | ocaml