ocaml: Sort the dependencies so they are stable between machines.

This commit is contained in:
Richard W.M. Jones
2009-11-06 12:32:57 +00:00
parent 79125c4dea
commit c0465ca3ae
2 changed files with 4 additions and 4 deletions

View File

@@ -1,8 +1,8 @@
guestfs.cmi:
guestfs_inspector.cmi:
guestfs.cmi:
bindtests.cmo: guestfs.cmi
bindtests.cmx: guestfs.cmx
guestfs.cmo: guestfs.cmi
guestfs.cmx: guestfs.cmi
guestfs_inspector.cmo: guestfs_inspector.cmi
guestfs_inspector.cmx: guestfs_inspector.cmi
guestfs.cmo: guestfs.cmi
guestfs.cmx: guestfs.cmi

View File

@@ -103,7 +103,7 @@ depend: .depend
.depend: $(wildcard *.mli) $(wildcard *.ml)
rm -f $@ $@-t
$(OCAMLFIND) ocamldep $^ | sed 's/ *$$//' > $@-t
$(OCAMLFIND) ocamldep $^ | sed 's/ *$$//' | sort > $@-t
mv $@-t $@
include .depend