Hi, how about disabling assembly only for amd64?
small patch is attached. Thanks, Stefan.
diff -u liquidwar-5.6.3/debian/rules liquidwar-5.6.3/debian/rules --- liquidwar-5.6.3/debian/rules +++ liquidwar-5.6.3/debian/rules @@ -17,6 +17,7 @@ export DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +export DEB_HOST_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU) # FOR AUTOCONF 2.52 AND NEWER ONLY ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) @@ -25,6 +26,11 @@ confflags += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) endif +# disable assembly for amd64, won't work +ifeq ($(DEB_HOST_ARCH_CPU),amd64) + confflags += --disable-asm +endif + configure: configure-stamp configure-stamp: autotools dh_testdir
signature.asc
Description: This is a digitally signed message part.