[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#476812: gcc-defaults: FTBFS (ppc64): Please add 'ppc64' to the architecture lines of the gnat/libgnat* packages.



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.





Reply to: