Source: certmonger
Version: 0.79.17-1
Severity: normal
Tags: patch

Hi,

Due to the use of override_dh_auto_test in order to append "|| true",
certmonger does not respect the "nocheck" flag in DEB_BUILD_OPTIONS
and runs the tests regardless.

Patch attached.


Regards,

-- 
      ,''`.
     : :'  :     Chris Lamb
     `. `'`      la...@debian.org / chris-lamb.co.uk
       `-
diff --git a/debian/rules b/debian/rules
index ea79d27..e16941b 100755
--- a/debian/rules
+++ b/debian/rules
@@ -28,7 +28,9 @@ override_dh_auto_install:
        certutil -N -d debian/tmp/etc/certmonger/nssdb --empty-password
 
 override_dh_auto_test:
+ifneq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
        dh_auto_test || true
+endif
 
 override_dh_clean:
        dh_clean

Reply via email to