Bug#805893: Please confirm the patch.

2015-11-30 Thread YunQiang Su
On Mon, Nov 30, 2015 at 5:49 PM, Ghislain Vaillant wrote: > This part of the patch still sounds weird to me: > > ifneq (,$(filter mips64%el mips64%el,$(DEB_HOST_ARCH))) > > The repetition of "mips64%el" looks unnecessary to me. > > Besides, since the aim is to catch all future mips64* architecture

Bug#805893: Please confirm the patch.

2015-11-30 Thread Ghislain Vaillant
This part of the patch still sounds weird to me: ifneq (,$(filter mips64%el mips64%el,$(DEB_HOST_ARCH))) The repetition of "mips64%el" looks unnecessary to me. Besides, since the aim is to catch all future mips64* architectures, shouldn't this be enough: ifneq (,$(filter mips64%,$(DEB_HOST_ARC

Bug#805893: Please confirm the patch.

2015-11-30 Thread YunQiang Su
I tested this patch. It works well for mips64el. On Fri, Nov 27, 2015 at 11:40 AM, YunQiang Su wrote: > On Wed, Nov 25, 2015 at 6:23 PM, Ghislain Vaillant wrote: >> This is the relevant portion of the proposed patch: >> >>> ifeq ($(DEB_HOST_ARCH),ppc64el) >>> DEB_CFLAGS_MAINT_APPEND += -mno-al

Bug#805893: Please confirm the patch.

2015-11-26 Thread YunQiang Su
On Wed, Nov 25, 2015 at 6:23 PM, Ghislain Vaillant wrote: > This is the relevant portion of the proposed patch: > >> ifeq ($(DEB_HOST_ARCH),ppc64el) >> DEB_CFLAGS_MAINT_APPEND += -mno-altivec >> +DEB_CXXFLAGS_MAINT_APPEND += -mno-altivec >> +endif >> +# Build without Altivec to prevent FTBFS on

Bug#805893: Please confirm the patch.

2015-11-25 Thread Ghislain Vaillant
This is the relevant portion of the proposed patch: > ifeq ($(DEB_HOST_ARCH),ppc64el) > DEB_CFLAGS_MAINT_APPEND += -mno-altivec > +DEB_CXXFLAGS_MAINT_APPEND += -mno-altivec > +endif > +# Build without Altivec to prevent FTBFS on ppc64el. > +ifneq (,$(filter mips64%el mips64%el,$(DEB_HOST_ARCH))