diff options
author | Hilko Bengen <bengen@hilluzination.de> | 2012-01-23 23:17:37 +0100 |
---|---|---|
committer | Hilko Bengen <bengen@hilluzination.de> | 2012-01-23 23:17:37 +0100 |
commit | b7122eaa58ccd153a8c39bc3b6f890755c5df089 (patch) | |
tree | d1fec6b614ebfdb98a692b7879d3da2d2ce9fec4 | |
parent | 22224254fa4676735985818d2ff3c8feafe4457c (diff) | |
download | libguestfs-b7122eaa58ccd153a8c39bc3b6f890755c5df089.tar.gz libguestfs-b7122eaa58ccd153a8c39bc3b6f890755c5df089.tar.xz libguestfs-b7122eaa58ccd153a8c39bc3b6f890755c5df089.zip |
resize, sparsify: find progress mini-library in out-of-tree builds (2)
-rw-r--r-- | resize/Makefile.am | 2 | ||||
-rw-r--r-- | sparsify/Makefile.am | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/resize/Makefile.am b/resize/Makefile.am index 48240d1e..ce9186f2 100644 --- a/resize/Makefile.am +++ b/resize/Makefile.am @@ -39,7 +39,7 @@ SOURCES += \ # Note this list must be in dependency order. OBJECTS = \ - ../fish/guestfish-progress.o \ + $(top_builddir)/fish/guestfish-progress.o \ progress_c.o \ utils.cmx \ progress.cmx \ diff --git a/sparsify/Makefile.am b/sparsify/Makefile.am index 8d1ddc44..b33e121f 100644 --- a/sparsify/Makefile.am +++ b/sparsify/Makefile.am @@ -38,7 +38,7 @@ SOURCES += \ # Note this list must be in dependency order. OBJECTS = \ - ../fish/guestfish-progress.o \ + $(top_builddir)/fish/guestfish-progress.o \ progress_c.o \ utils.cmx \ progress.cmx \ @@ -49,7 +49,7 @@ bin_SCRIPTS = virt-sparsify # -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 unix -I $(top_builddir)/src/.libs -I ../ocaml +OCAMLPACKAGES = -package unix -I $(top_builddir)/src/.libs -I $(top_builddir)/ocaml OCAMLCFLAGS = -g -warn-error CDEFLMPSUVYZX $(OCAMLPACKAGES) OCAMLOPTFLAGS = $(OCAMLCFLAGS) |