Package: graphviz
Version: 2.38.0-16.1
Severity: important
There is a bug in the d/rules where the wrong DEB_HOST_* var for
./configure in the 2.38.0-16.1 upload:
diff -Nru graphviz-2.38.0/debian/rules graphviz-2.38.0/debian/rules
--- graphviz-2.38.0/debian/rules 2016-10-20 17:43:26.000000000 +0000
+++ graphviz-2.38.0/debian/rules 2017-01-28 13:26:14.000000000 +0000
@@ -63,7 +63,7 @@
# Configure the package
dh_autoreconf
- ./configure --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) \
+ ./configure --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_MULTIARCH) \
--disable-silent-rules \
--prefix=/usr \
--datadir=\$${prefix}/share \
@@ -258,8 +258,8 @@
I don't think that "--host" value should have been changed. On i386
(and possibly other ports) this causes a cross-compile.
~Niels