From: Tim Gardner Date: Mon, 22 Aug 2011 16:00:45 +0000 (-0600) Subject: UBUNTU: [Config] Linearize module/abi checks X-Git-Url: http://git.alex.org.uk UBUNTU: [Config] Linearize module/abi checks The module and ABI checks are not independent, so make sure the modules check is dependent on the ABI check having been performed. Also drop some superfluous shortcuts along the way. Signed-off-by: Tim Gardner --- diff --git a/debian/rules.d/2-binary-arch.mk b/debian/rules.d/2-binary-arch.mk index 62ec980..0c6a64b 100644 --- a/debian/rules.d/2-binary-arch.mk +++ b/debian/rules.d/2-binary-arch.mk @@ -43,7 +43,7 @@ install-%: dbgpkgdir = $(CURDIR)/debian/$(bin_pkg_name)-$*-dbgsym install-%: basepkg = $(hdrs_pkg_name) install-%: hdrdir = $(CURDIR)/debian/$(basepkg)-$*/usr/src/$(basepkg)-$* install-%: target_flavour = $* -install-%: $(stampdir)/stamp-build-% checks-% +install-%: checks-% dh_testdir dh_testroot dh_clean -k -p$(bin_pkg_name)-$* diff --git a/debian/rules.d/4-checks.mk b/debian/rules.d/4-checks.mk index d48c05d..d1c0ad9 100644 --- a/debian/rules.d/4-checks.mk +++ b/debian/rules.d/4-checks.mk @@ -1,6 +1,4 @@ # Check ABI for package against last release (if not same abinum) -abi-%: $(abidir)/% - @# Empty for make to be happy $(abidir)/%: $(stampdir)/stamp-build-% install -d $(abidir) sed -e 's/^\(.\+\)[[:space:]]\+\(.\+\)[[:space:]]\(.\+\)$$/\3 \2 \1/' \ @@ -11,9 +9,7 @@ abi-check-%: $(abidir)/% "$(prev_abidir)" "$(abidir)" "$(skipabi)" # Check the module list against the last release (always) -module-%: $(abidir)/%.modules - @# Empty for make to be happy -$(abidir)/%.modules: $(stampdir)/stamp-build-% +$(abidir)/%.modules: abi-check-% install -d $(abidir) find $(builddir)/build-$*/ -name \*.ko | \ sed -e 's/.*\/\([^\/]*\)\.ko/\1/' | sort > $@ @@ -22,7 +18,7 @@ module-check-%: $(abidir)/%.modules @perl -f $(DROOT)/scripts/module-check "$*" \ "$(prev_abidir)" "$(abidir)" $(skipmodule) -checks-%: abi-check-% module-check-% +checks-%: module-check-% @# Will be calling more stuff later # Check the config against the known options list.