From 5b2d7d5d75b34fc368e2def9d652ad87ddb2042a Mon Sep 17 00:00:00 2001 From: Axel Beckert Date: Sun, 26 Oct 2014 01:43:04 +0200 Subject: [PATCH] Makefile: Clean up coverage data in multiple targets --- Makefile | 2 ++ debian/changelog | 1 + 2 files changed, 3 insertions(+) diff --git a/Makefile b/Makefile index e44f13f..655f2df 100644 --- a/Makefile +++ b/Makefile @@ -67,6 +67,7 @@ clean: @if [ -e build-stamp ]; then rm -f build-stamp ; fi @if [ -e configure-stamp ]; then rm -f configure-stamp ; fi @if [ -d debian/xen-tools ]; then rm -rf ./debian/xen-tools; fi + @if [ -d cover_db ]; then rm -rf ./cover_db; fi @if [ -e $(BASE)-$(VERSION).tar.gz ]; then rm $(BASE)-$(VERSION).tar.gz ; fi @if [ -e $(BASE)-$(VERSION).tar.gz.asc ]; then rm $(BASE)-$(VERSION).tar.gz.asc ; fi cd t; $(MAKE) clean @@ -247,6 +248,7 @@ release: tidy fixup-perms update-version update-modules clean changelog rm -f $(DIST_PREFIX)/$(BASE)-$(VERSION).tar.gz cp -R . $(DIST_PREFIX)/$(BASE)-$(VERSION) rm -rf $(DIST_PREFIX)/$(BASE)-$(VERSION)/debian + rm -rf $(DIST_PREFIX)/$(BASE)-$(VERSION)/cover_db rm -rf $(DIST_PREFIX)/$(BASE)-$(VERSION)/.git* cd $(DIST_PREFIX) && tar -cvf $(DIST_PREFIX)/$(BASE)-$(VERSION).tar $(BASE)-$(VERSION)/ gzip $(DIST_PREFIX)/$(BASE)-$(VERSION).tar diff --git a/debian/changelog b/debian/changelog index 9b4ef50..54f060f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -27,6 +27,7 @@ xen-tools (4.4+dev-1) UNRELEASED; urgency=low + Add password length sanity check with fallback to default length. + Raise default password length from 8 to 23. + Flush output after each line in runCommand(). + + Makefile: Clean up coverage data in multiple targets. [ Santiago Vila ] + Fix unaligned maxmem output of xen-create-image. (Closes: #764126)