summaryrefslogtreecommitdiffstats
path: root/resize
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2012-10-22 12:18:40 +0100
committerRichard W.M. Jones <rjones@redhat.com>2012-10-22 12:20:27 +0100
commita66fd2fac25d5520b4eb2935dea6a501daed946a (patch)
treedd151dec380aee1e48cd431551f406eef42622ba /resize
parent6e63636869b9ea7559a28810437e7fdc43ab6a17 (diff)
downloadlibguestfs-a66fd2fac25d5520b4eb2935dea6a501daed946a.tar.gz
libguestfs-a66fd2fac25d5520b4eb2935dea6a501daed946a.tar.xz
libguestfs-a66fd2fac25d5520b4eb2935dea6a501daed946a.zip
resize: Depend explicitly on Unix module.
Commit a0722c7ad846960be54978a31ebe73b76e119203 introduced a dependency on the Unix module. This was not listed in the list of '-package's, but as long as you had ocaml-gettext installed it would still work because that pulled in Unix implicitly. Thanks Olaf Hering.
Diffstat (limited to 'resize')
-rw-r--r--resize/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/resize/Makefile.am b/resize/Makefile.am
index 31fd71b7..7d4cade5 100644
--- a/resize/Makefile.am
+++ b/resize/Makefile.am
@@ -56,7 +56,7 @@ bin_SCRIPTS = virt-resize
# -I $(top_builddir)/src/.libs is a hack which forces corresponding -L
# option to be passed to gcc, so we don't try linking against an
# installed copy of libguestfs.
-OCAMLPACKAGES = -package str -I $(top_builddir)/src/.libs -I ../ocaml
+OCAMLPACKAGES = -package str,unix -I $(top_builddir)/src/.libs -I ../ocaml
if HAVE_OCAML_PKG_GETTEXT
OCAMLPACKAGES += -package gettext-stub
endif