mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-11-23 10:04:01 +08:00
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>
This commit is contained in:
parent
a4c1bf4d47
commit
018cd6e9a6
5
debian/rules
vendored
5
debian/rules
vendored
@ -61,6 +61,11 @@ CC ?= $(DEB_HOST_GNU_TYPE)-gcc
|
||||
COMMON_CONF_FLAGS += --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE)
|
||||
endif
|
||||
|
||||
# work around Debian Bug #1070042
|
||||
ifeq ($(DEB_HOST_ARCH),mips64el)
|
||||
COMMON_CONF_FLAGS += --without-libarchive
|
||||
endif
|
||||
|
||||
%:
|
||||
dh $@ -B${stdbuilddir}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user