Displaying 2 results from an estimated 2 matches for "3f33118".
2012 Jan 04
1
[PATCH] build: Fix automake warnings
...t)
# Images used by tests
-.PHONY: test_images
test_images:
$(MAKE) -C $(top_builddir)/images
@@ -76,3 +74,5 @@ install-data-hook:
$(MAKE) -f Makefile-pl DESTDIR=$(DESTDIR) install
endif
+
+.PHONY: src_deps test_images
diff --git a/resize/Makefile.am b/resize/Makefile.am
index 5046a8c..3f33118 100644
--- a/resize/Makefile.am
+++ b/resize/Makefile.am
@@ -17,6 +17,8 @@
include $(top_srcdir)/subdir-rules.mk
+SOURCES =
+
EXTRA_DIST = \
$(SOURCES) \
virt-resize.pod \
@@ -27,7 +29,7 @@ CLEANFILES = *~ *.cmi *.cmo *.cmx *.cmxa *.o virt-resize test.img
if HAVE_OCAML
# Alphabetical...
2012 Jan 10
1
[PATCH] Prepend local library path to LD_LIBRARY_PATH for tests, instead of replacing it
...mages
TESTS_ENVIRONMENT = \
- LD_LIBRARY_PATH=$(top_builddir)/src/.libs \
+ LD_LIBRARY_PATH=$(top_builddir)/src/.libs${if ${LD_LIBRARY_PATH},:${LD_LIBRARY_PATH},} \
LIBGUESTFS_PATH=$(top_builddir)/appliance \
TMPDIR=$(top_builddir)
diff --git a/resize/Makefile.am b/resize/Makefile.am
index 3f33118..d8ce376 100644
--- a/resize/Makefile.am
+++ b/resize/Makefile.am
@@ -103,7 +103,7 @@ random_val := $(shell awk 'BEGIN{srand(); print 1+int(255*rand())}' < /dev/null)
TESTS_ENVIRONMENT = \
MALLOC_PERTURB_=$(random_val) \
- LD_LIBRARY_PATH=$(top_builddir)/src/.libs \
+ LD_LIBRARY_PAT...