Skip to content

Commit 018cd6e

Browse files
committed
debian: don't build with libarchive on mips64el
The libarchive functionality in "mke2fs -d foo.tar" is breaking the regression test[1]. Since this is working everywhere _except_ mips64el, as a short-term workaround disable libarchive support on this platform until it can be fixed. [1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1070042 Signed-off-by: Theodore Ts'o <tytso@mit.edu>
1 parent a4c1bf4 commit 018cd6e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

debian/rules

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ CC ?= $(DEB_HOST_GNU_TYPE)-gcc
6161
COMMON_CONF_FLAGS += --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE)
6262
endif
6363

64+
# work around Debian Bug #1070042
65+
ifeq ($(DEB_HOST_ARCH),mips64el)
66+
COMMON_CONF_FLAGS += --without-libarchive
67+
endif
68+
6469
%:
6570
dh $@ -B${stdbuilddir}
6671

0 commit comments

Comments
 (0)