diff options
author | Richard Jones <rich@koneko.home.annexia.org> | 2010-03-22 10:05:49 +0000 |
---|---|---|
committer | Richard Jones <rich@koneko.home.annexia.org> | 2010-03-22 10:41:46 +0000 |
commit | 82bd4fac87dce677a69bc5297f11799baf3eb1f5 (patch) | |
tree | 70b901b92398b80e3725f83ef62e85ffb3876a5a /ocaml/examples/Makefile.am | |
parent | 36e8ece4ccdf0cb65cd6a8bb30d95c9813335645 (diff) | |
download | libguestfs-82bd4fac87dce677a69bc5297f11799baf3eb1f5.tar.gz libguestfs-82bd4fac87dce677a69bc5297f11799baf3eb1f5.tar.xz libguestfs-82bd4fac87dce677a69bc5297f11799baf3eb1f5.zip |
ocaml examples: Fix linking line so it uses local library.
Diffstat (limited to 'ocaml/examples/Makefile.am')
-rw-r--r-- | ocaml/examples/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ocaml/examples/Makefile.am b/ocaml/examples/Makefile.am index ab058b13..e38a5c8d 100644 --- a/ocaml/examples/Makefile.am +++ b/ocaml/examples/Makefile.am @@ -10,7 +10,7 @@ if HAVE_OCAML noinst_SCRIPTS = lvs -OCAMLFINDFLAGS = -ccopt '-L $(top_builddir)/src/.libs' +OCAMLFINDFLAGS = -cclib -L$(top_builddir)/src/.libs lvs: lvs.ml $(OCAMLFIND) ocamlopt $(OCAMLFINDFLAGS) \ |