On Tue, Aug 04, 2015 at 03:35:38PM +0200, Cyril Brulebois wrote: > The non attached patch certainly might not fix anything. ;)
Sorry for the omission. Helmut
diff -Nru busybox-1.22.0/debian/changelog busybox-1.22.0/debian/changelog --- busybox-1.22.0/debian/changelog 2015-03-04 17:46:39.000000000 +0100 +++ busybox-1.22.0/debian/changelog 2015-08-04 15:45:44.000000000 +0200 @@ -1,3 +1,11 @@ +busybox (1:1.22.0-15.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Fix logic inversion in DEB_BUILD_OPTIONS=nocheck handling. + (Closes: #794526) + + -- Helmut Grohne <hel...@subdivi.de> Tue, 04 Aug 2015 15:45:02 +0200 + busybox (1:1.22.0-15) unstable; urgency=medium [ Michael Gilbert ] diff -Nru busybox-1.22.0/debian/rules busybox-1.22.0/debian/rules --- busybox-1.22.0/debian/rules 2015-03-04 16:12:02.000000000 +0100 +++ busybox-1.22.0/debian/rules 2015-08-04 15:45:51.000000000 +0200 @@ -7,7 +7,7 @@ PKGVERSION := $(shell dpkg-parsechangelog | sed -ne 's,^Version: *\(.*\)$$,\1,p') VENDOR := $(shell dpkg-vendor --query vendor) -ifneq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) +ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) RUN_TESTSUITE = y endif TESTSUITE_ENV = SKIP_KNOWN_BUGS=y VERBOSE=y