search for: f1f8fb824

Displaying 3 results from an estimated 3 matches for "f1f8fb824".

2017 Jul 18
0
[PATCH v2 2/2] v2v: Add slow tests of opensuse 13.1, 13.2 and 42.1 conversions.
--- v2v/Makefile.am | 3 +++ 1 file changed, 3 insertions(+) diff --git a/v2v/Makefile.am b/v2v/Makefile.am index a4f4300cb..f1f8fb824 100644 --- a/v2v/Makefile.am +++ b/v2v/Makefile.am @@ -370,6 +370,9 @@ real_guests_scripts = \ test-v2v-conversion-of-debian-8.sh \ test-v2v-conversion-of-fedora-20.sh \ test-v2v-conversion-of-fedora-23.sh \ + test-v2v-conversion-of-opensuse-13.1.sh \ + test-v2v-conversion-of-opensuse-13.2.sh...
2017 Jul 18
4
[PATCH v2 0/2] v2v: Add slow tests of opensuse 13.1, 13.2 and 42.1
v1 was: https://www.redhat.com/archives/libguestfs/2017-July/msg00154.html There is no change in the first patch, but I added a second patch adding slow tests of opensuse guests (which pass, but require the first patch). Rich.
2017 Aug 08
3
[PATCH] build: Add a common script for generating OCaml dependencies correctly.
...a' | \ - $(SED) -e 's,$(abs_srcdir)/,$(builddir)/,g' | \ - sort > $@-t - mv $@-t $@ - +# OCaml dependencies. +.depend: *.mli *.ml + $(top_builddir)/ocaml-dep.sh $^ -include .depend endif -.PHONY: depend docs +.PHONY: docs diff --git a/v2v/Makefile.am b/v2v/Makefile.am index f1f8fb824..7f260e3c0 100644 --- a/v2v/Makefile.am +++ b/v2v/Makefile.am @@ -515,19 +515,10 @@ v2v_unit_tests_LINK = \ $(v2v_unit_tests_THEOBJECTS) -o $@ # Dependencies. -depend: .depend - -.depend: $(wildcard $(abs_srcdir)/*.mli) $(wildcard $(abs_srcdir)/*.ml) - rm -f $@ $@-t - $(OCAMLFIND) ocamldep -...