Arthur Loiret writes: > Hope I'm not wrong again... > > ifeq (,$(filter $(DEB_HOST_ARCH),ppc64)) > no_packages += gnat > endif > > You disabled gnat on all archs but ppc64. This should be ifneq.
This time you are right! I blindly pasted the previous "ifeq". Thanks for spotting this. There is a simpler fix: Index: debian/rules =================================================================== --- debian/rules (révision 3019) +++ debian/rules (copie de travail) @@ -256,7 +256,7 @@ no_packages += gcc-spu g++-spu gfortran-spu endif -ifeq (,$(filter $(DEB_HOST_ARCH),ppc64)) +ifeq ($(DEB_HOST_ARCH),ppc64) no_packages += gnat endif Committed. -- Ludovic Brenta.