diff options
author | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2012-08-21 04:45:02 +0000 |
---|---|---|
committer | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2012-08-21 04:45:02 +0000 |
commit | 7ec7f16f55b6bc1622affe65eca532cf74b29d50 (patch) | |
tree | f68629430ec3761842db82ab1c8d4a1cc6922beb | |
parent | c705000ce4f0ee63fed1cf81d0f60d51993f4c42 (diff) |
fix module order
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@12868 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | otherlibs/threads/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/otherlibs/threads/Makefile b/otherlibs/threads/Makefile index 87eaedaa5..49a121c92 100644 --- a/otherlibs/threads/Makefile +++ b/otherlibs/threads/Makefile @@ -36,9 +36,10 @@ LIB_OBJS=pervasives.cmo \ $(LIB)/lazy.cmo $(LIB)/stream.cmo $(LIB)/buffer.cmo \ $(LIB)/printf.cmo $(LIB)/arg.cmo $(LIB)/printexc.cmo $(LIB)/gc.cmo \ $(LIB)/digest.cmo $(LIB)/random.cmo $(LIB)/hashtbl.cmo \ - $(LIB)/format.cmo $(LIB)/scanf.cmo $(LIB)/camlinternalOO.cmo \ + $(LIB)/format.cmo $(LIB)/scanf.cmo $(LIB)/callback.cmo \ + $(LIB)/camlinternalOO.cmo \ $(LIB)/oo.cmo $(LIB)/camlinternalMod.cmo $(LIB)/genlex.cmo \ - $(LIB)/callback.cmo $(LIB)/weak.cmo $(LIB)/filename.cmo \ + $(LIB)/weak.cmo $(LIB)/filename.cmo \ $(LIB)/complex.cmo $(LIB)/arrayLabels.cmo $(LIB)/listLabels.cmo \ $(LIB)/stringLabels.cmo $(LIB)/stdLabels.cmo $(LIB)/moreLabels.cmo |