diff options
author | Jim Meyering <meyering@redhat.com> | 2009-10-05 12:25:15 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-10-05 14:16:46 +0200 |
commit | c6b8db6493dd633bf48b13daf72cdc9c078b5f9a (patch) | |
tree | 8c51b0cb49a4b04c8839e75903549020f376cc70 /ocaml | |
parent | 65d61d4244b6301284e3b67e8ff23cc1374c90f2 (diff) | |
download | libguestfs-c6b8db6493dd633bf48b13daf72cdc9c078b5f9a.tar.gz libguestfs-c6b8db6493dd633bf48b13daf72cdc9c078b5f9a.tar.xz libguestfs-c6b8db6493dd633bf48b13daf72cdc9c078b5f9a.zip |
build: avoid parallel ocaml/... build failure
A parallel build could fail due to the use in ocaml/examples
of ocaml/guestfs.cmi before it was built.
* Makefile.am (SUBDIRS): Add both ocaml and ocaml/examples,
to ensure they're built in this order, and not in parallel.
* ocaml/Makefile.am (SUBDIRS): Don't define.
Diffstat (limited to 'ocaml')
-rw-r--r-- | ocaml/Makefile.am | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ocaml/Makefile.am b/ocaml/Makefile.am index 462404c1..c89296b6 100644 --- a/ocaml/Makefile.am +++ b/ocaml/Makefile.am @@ -23,8 +23,6 @@ EXTRA_DIST = \ run-bindtests \ t/*.ml -SUBDIRS = examples - CLEANFILES = *.cmi *.cmo *.cmx *.cma *.cmxa *.o *.a *.so CLEANFILES += t/*.cmi t/*.cmo t/*.cmx t/*.o t/*.a t/*.so |