From 38ebb70a5a45ddec54621def5e4348c95c06590c Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Sun, 31 Jul 2011 21:53:28 +0100 Subject: [PATCH] Make .depend file stable. --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 6736a80..fb632b7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -246,8 +246,9 @@ depend: .depend .depend: $(wildcard *.mli) $(wildcard *.ml) $(OCAMLFIND) ocamldep $(OCAMLPACKAGES) $^ | \ + $(SED) -e 's/ *$$//' | \ $(SED) -e :a -e '/ *\\$$/N; s/ *\\\n */ /; ta' | \ - sort > $@-t + LANG=C sort > $@-t mv $@-t $@ include .depend -- 1.8.3.1