We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1f9a40 commit 2075933Copy full SHA for 2075933
caml/Makefile
@@ -68,7 +68,10 @@ ocaml:
68
cp -r "$$(ocamlfind query ocaml-src)" $@
69
VERSION="$$(head -n1 ocaml/VERSION)" ; \
70
if test -d "patches/$$VERSION" ; then \
71
- cd .. && git apply --unsafe-path -v --directory=caml/$@ "caml/patches/$$VERSION"/*; \
+ cd .. && \
72
+ for p in "caml/patches/$$VERSION"/*; do \
73
+ (set -x ; git apply --unsafe-path -v --directory=caml/$@ "$$p" ; echo $$?) ; \
74
+ done ; \
75
fi
76
77
ocaml/Makefile.config: $(LIBS) $(TOOLCHAIN_FOR_BUILD) | ocaml
0 commit comments