summaryrefslogtreecommitdiffstats
path: root/resize
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2012-03-31 23:17:05 +0100
committerRichard W.M. Jones <rjones@redhat.com>2012-03-31 23:17:41 +0100
commit6e3de762782b050fe7ad675297089a42026f05c4 (patch)
treec4a89c98faf993bd65785b7643ea86c3bd8c86db /resize
parentad43dde9c87a6c3d58c626d2fa42dd68c2e15e01 (diff)
downloadlibguestfs-6e3de762782b050fe7ad675297089a42026f05c4.tar.gz
libguestfs-6e3de762782b050fe7ad675297089a42026f05c4.tar.xz
libguestfs-6e3de762782b050fe7ad675297089a42026f05c4.zip
Ensure that SOURCES are always in EXTRA_DIST, even if OCaml not available.
Diffstat (limited to 'resize')
-rw-r--r--resize/Makefile.am8
1 files changed, 3 insertions, 5 deletions
diff --git a/resize/Makefile.am b/resize/Makefile.am
index ce9186f2..bd15a329 100644
--- a/resize/Makefile.am
+++ b/resize/Makefile.am
@@ -17,8 +17,6 @@
include $(top_srcdir)/subdir-rules.mk
-SOURCES =
-
EXTRA_DIST = \
$(SOURCES) \
virt-resize.pod \
@@ -26,10 +24,8 @@ EXTRA_DIST = \
CLEANFILES = *~ *.cmi *.cmo *.cmx *.cmxa *.o virt-resize test.img
-if HAVE_OCAML
-
# Alphabetical order.
-SOURCES += \
+SOURCES = \
progress_c.c \
progress.mli \
progress.ml \
@@ -37,6 +33,8 @@ SOURCES += \
utils.ml \
utils_tests.ml
+if HAVE_OCAML
+
# Note this list must be in dependency order.
OBJECTS = \
$(top_builddir)/fish/guestfish-progress.o \