On 02/10/15 07:49, Sandro Tosi wrote:
> On Thu, Oct 1, 2015 at 11:24 PM, Emilio Pozuelo Monfort
> <po...@debian.org> wrote:
>> numpy/core/src/multiarray/lowlevel_strided_loops.c.src:10:15: warning: extra
>> tokens at end of #ifdef directive
>>  #ifdef defined(__ppc__) || defined(__powerpc__) || defined(_ARCH_PPC)
>>                ^
>> That's because you mixed 'ifdef' together with defined. That should have 
>> been 'if'.
>>
>> Anyway, just changed that with
>>
>> #if defined(__powerpc__) & !defined(__powerpc64__)
> 
> it worked! thanks a ton!

Great! Thanks for taking care of this.

>> BTW you can build packages on the porterbox :-)
> 
> yeah, i know, was kinda in a rush and clearly mistakes happen.

Understandable :)

Cheers,
Emilio

_______________________________________________
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

Reply via email to