summaryrefslogtreecommitdiffstats
path: root/ocaml
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2009-11-06 12:32:57 +0000
committerRichard W.M. Jones <rjones@redhat.com>2009-11-06 12:33:27 +0000
commitc0465ca3ae5cd55dbc5dc6d3a511ae5431985d3b (patch)
tree62a078ad374549cf75d7d8947ea943e9588a46b2 /ocaml
parent79125c4dea9c69d08b522ed7c85f26dc6ee1bcb3 (diff)
downloadlibguestfs-c0465ca3ae5cd55dbc5dc6d3a511ae5431985d3b.tar.gz
libguestfs-c0465ca3ae5cd55dbc5dc6d3a511ae5431985d3b.tar.xz
libguestfs-c0465ca3ae5cd55dbc5dc6d3a511ae5431985d3b.zip
ocaml: Sort the dependencies so they are stable between machines.
Diffstat (limited to 'ocaml')
-rw-r--r--ocaml/.depend6
-rw-r--r--ocaml/Makefile.am2
2 files changed, 4 insertions, 4 deletions
diff --git a/ocaml/.depend b/ocaml/.depend
index 8ed7c5be..3f743d56 100644
--- a/ocaml/.depend
+++ b/ocaml/.depend
@@ -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
diff --git a/ocaml/Makefile.am b/ocaml/Makefile.am
index 032a5517..bb7407af 100644
--- a/ocaml/Makefile.am
+++ b/ocaml/Makefile.am
@@ -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