Package: procps
Version: 1:3.3.4-2
Severity: important
Tags: patch
debian/rules hard-codes DEB_BUILD_OPTIONS='nocheck', which ignores other
DEB_BUILD_OPTIONS specified in the environment, and the '' seems to only
generate warnings in the build logs:
dh: warning: invalid flag in DEB_BUILD_OPTIONS: 'nocheck'
The following patch fixes that, by appending nocheck to DEB_BUILD_OPTIONS,
rather than overriding it, and removing the '':
diff -Nru procps-3.3.4/debian/rules procps-3.3.4/debian/rules
--- procps-3.3.4/debian/rules 2012-11-04 00:29:28.000000000 -0700
+++ procps-3.3.4/debian/rules 2013-02-03 15:36:12.000000000 -0800
@@ -5,7 +5,7 @@
PACKAGE="procps"
DEBROOT=$(CURDIR)/debian/tmp
-DEB_BUILD_OPTIONS='nocheck'
+DEB_BUILD_OPTIONS += nocheck
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
Alternately, removing nocheck entirely seems to work at least on amd64 and
i386...
live well,
vagrant
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]