summaryrefslogtreecommitdiffstats
path: root/ocaml
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2011-11-30 17:08:27 +0000
committerRichard W.M. Jones <rjones@redhat.com>2011-11-30 17:08:27 +0000
commitce331df0f1857bccebaaddfac79677bc9f527197 (patch)
treefc1191b2aa7ced19e6de8e1ee19ba45f1a3ac02e /ocaml
parentece902712bcd54e0cd28b57352c6a4efcf26c4f6 (diff)
downloadlibguestfs-ce331df0f1857bccebaaddfac79677bc9f527197.tar.gz
libguestfs-ce331df0f1857bccebaaddfac79677bc9f527197.tar.xz
libguestfs-ce331df0f1857bccebaaddfac79677bc9f527197.zip
ocaml: Fix OCaml dependencies.
Diffstat (limited to 'ocaml')
-rw-r--r--ocaml/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/ocaml/Makefile.am b/ocaml/Makefile.am
index 52870354..95185efd 100644
--- a/ocaml/Makefile.am
+++ b/ocaml/Makefile.am
@@ -139,9 +139,9 @@ depend: .depend
.depend: $(wildcard *.mli) $(wildcard *.ml)
rm -f $@ $@-t
$(OCAMLFIND) ocamldep $^ | \
- $(SED) 's/ *$$//' | \
+ $(SED) -e 's/ *$$//' | \
$(SED) -e :a -e '/ *\\$$/N; s/ *\\\n */ /; ta' | \
- sort > $@-t
+ LANG=C sort > $@-t
mv $@-t $@
include .depend