summaryrefslogtreecommitdiffstats
path: root/ocaml
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2012-01-23 10:03:14 +0100
committerRichard W.M. Jones <rjones@redhat.com>2012-01-23 09:40:18 +0000
commit70070cf24420bee01770da2897d2ca32e3183181 (patch)
tree56f79bf5129eff96afdb91e48350fb8179e3c0ea /ocaml
parent7fbf0cc4993908d143ac9ea1005815863f222062 (diff)
downloadlibguestfs-70070cf24420bee01770da2897d2ca32e3183181.tar.gz
libguestfs-70070cf24420bee01770da2897d2ca32e3183181.tar.xz
libguestfs-70070cf24420bee01770da2897d2ca32e3183181.zip
build: don't use automake-internal variable
Hi Rich, I realized a day or two late that my suggestion was not quite right. Here's the fix: >From 5294c21cf07c4ec2f094182ba9f32696f3de2751 Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering@redhat.com> Date: Mon, 23 Jan 2012 10:01:40 +0100 Subject: [PATCH libguestfs] build: don't use automake-internal variable * ocaml/Makefile.am (mlguestfs.cma): Use the documented variable form, $(libguestfsocaml_a_OBJECTS), not the $(am_libguestfsocaml_a_OBJECTS) that I suggested for commit 1.15.16-17-g8b9eaec.
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 ce564c52..2705d85f 100644
--- a/ocaml/Makefile.am
+++ b/ocaml/Makefile.am
@@ -49,12 +49,12 @@ noinst_LIBRARIES = libguestfsocaml.a
mlguestfs.cma: libguestfsocaml.a guestfs.cmo
$(OCAMLMKLIB) -o mlguestfs \
- $(am_libguestfsocaml_a_OBJECTS) guestfs.cmo \
+ $(libguestfsocaml_a_OBJECTS) guestfs.cmo \
-L$(top_builddir)/src/.libs -lguestfs
mlguestfs.cmxa: libguestfsocaml.a guestfs.cmx
$(OCAMLMKLIB) -o mlguestfs \
- $(am_libguestfsocaml_a_OBJECTS) guestfs.cmx \
+ $(libguestfsocaml_a_OBJECTS) guestfs.cmx \
-L$(top_builddir)/src/.libs -lguestfs
libguestfsocaml_a_CFLAGS = \