Source: adns
Version: 1.5.0~rc1-1
Tags: patch
User: helm...@debian.org
Usertags: rebootstrap

Hi,

ands fails to cross build from source, because the test suite does not
pass during cross compilation. It executes host architecture binaries
which cannot be run in a cross setting. The issue goes away when adns
supports DEB_BUILD_OPTIONS=nocheck. I've attached a patch for this.

Helmut
diff -u adns-1.5.0~rc1/debian/changelog adns-1.5.0~rc1/debian/changelog
--- adns-1.5.0~rc1/debian/changelog
+++ adns-1.5.0~rc1/debian/changelog
@@ -1,3 +1,10 @@
+adns (1.5.0~rc1-1.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTCBFS: Support DEB_BUILD_OPTIONS=nocheck. Closes: #-1.
+
+ -- Helmut Grohne <hel...@subdivi.de>  Thu, 21 Jan 2016 19:39:09 +0100
+
 adns (1.5.0~rc1-1) unstable; urgency=medium
 
   * New upstream version.  Closes:#411263.
diff -u adns-1.5.0~rc1/debian/rules adns-1.5.0~rc1/debian/rules
--- adns-1.5.0~rc1/debian/rules
+++ adns-1.5.0~rc1/debian/rules
@@ -15,7 +15,9 @@
        dh build --before configure
        dh_auto_configure
        dh_auto_build
+ifeq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),)
        make -C regress check
+endif
        dh build --after test
        touch $@
 

Reply via email to