search for: f4916a1

Displaying 2 results from an estimated 2 matches for "f4916a1".

Did you mean: 491621
2015 Sep 08
1
[PATCH] build: improve maintainer-check-extra-dist target
...les (i.e. files not being distributed). The output of comm is redirected to file and then printed, so we can check it is empty (failing the target if not). --- Makefile.am | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Makefile.am b/Makefile.am index 8f0bb1b..f4916a1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -573,13 +573,15 @@ maintainer-tag: maintainer-check-extra-dist: zcat $(PACKAGE_NAME)-$(VERSION).tar.gz | tar tf - | sort | \ sed 's,^$(PACKAGE_NAME)-$(VERSION)/,,' > tmp/tarfiles - git ls-files | sort > tmp/gitfiles - diff -ur tmp/t...
2015 Sep 15
1
[PATCH] Add 'make installcheck' rule to test installed packages.
This is my proposed alternative to the complicated test framework (https://www.redhat.com/archives/libguestfs/2015-August/msg00022.html). In this patch, when we want to run tests on installed packages we just copy in the installed binaries over the source directory, and run the test suite as normal. This is basically the same as the current (not used) contrib/make-check-on-installed.pl script,