discuss-gnuradio
[Top][All Lists]
Advanced

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

Re: [Discuss-gnuradio] make check failing


From: Eric Blossom
Subject: Re: [Discuss-gnuradio] make check failing
Date: Fri, 25 Apr 2003 18:26:36 -0700
User-agent: Mutt/1.4i

On Thu, Apr 24, 2003 at 09:41:26AM +1000, Alan Gray wrote:
> Ok, it seems that I've got everything building correctly but I'm running 
> into troubles with make check. All goes well until it hits some of the 
> atsc stuff, where it all goes pear shaped as follows:


> **snip**
> 2330+0 records in
> 2330+0 records out
> 438040 bytes transferred in 0.072343 seconds (6055046 bytes/sec)
> PASS: test_loopback
>   File "./test_full_loopback", line 137
>     atsc_rx_FLAGS += s_option
>                    ^
> SyntaxError: invalid syntax

Hi Alan,

This has been fixed in the latest CVS code.
I was using a feature that was not in python 1.5x


The fix is to change

     atsc_rx_FLAGS += s_option
     atsc_tx_FLAGS += s_option

to

     atsc_rx_FLAGS = atsc_rx_FLAGS + s_option
     atsc_tx_FLAGS = atsc_tx_FLAGS + s_option


Eric




reply via email to

[Prev in Thread] Current Thread [Next in Thread]