On Fri, May 30, 2014 at 06:15:59PM +0900, Norbert Preining wrote: > > Ubuntu tried on arm64[1] and ppc64el[2], and the Debian tried on > > ppc64[3], all failed the same way as the s390x and hppa failures:
Also, I cherry-picked your git commit, and it doesn't actually work as advertised. See below: ------- (base)adconrad@cthulhu:~/review/tex$ cat Makefile LUAJIT_FAIL_ARCHS="s390x hppa ppc64 ppc64el arm64" DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) ifneq (,$(filter $(DEB_HOST_ARCH), $(LUAJIT_FAIL_ARCHS))) DISABLE_JIT=--disable-luajittex endif foo: echo $(DISABLE_JIT) (base)adconrad@cthulhu:~/review/tex$ for i in s390x hppa ppc64 ppc64el arm64; do echo $i; DEB_HOST_ARCH=$i make; done s390x echo hppa echo --disable-luajittex --disable-luajittex ppc64 echo --disable-luajittex --disable-luajittex ppc64el echo --disable-luajittex --disable-luajittex arm64 echo ------- If you change that to 'LUAJIT_FAIL_ARCHS=" s390x hppa ppc64 ppc64el arm64 "' (note the leading and trailing space), then it catches all of the arches. ... Adam -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org