From 43c88e258fcbf22e1c0b2bdb15f6b0ba9f681548 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 20 Jul 2012 09:42:33 +0100 Subject: [PATCH] Make .depend file stable (this time for OCaml 4.00.0). --- Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.am b/Makefile.am index 53cb691..c1dd141 100644 --- a/Makefile.am +++ b/Makefile.am @@ -247,6 +247,7 @@ depend: .depend .depend: $(wildcard *.mli) $(wildcard *.ml) $(OCAMLFIND) ocamldep $(OCAMLPACKAGES) $^ | \ $(SED) -e 's/ *$$//' | \ + $(SED) -e 's/[ \t]:/:/' | \ $(SED) -e :a -e '/ *\\$$/N; s/ *\\\n */ /; ta' | \ LANG=C sort > $@-t mv $@-t $@ -- 1.8.3.1