Re: [PATCH 07/12] bsps: Avoid line continuation in Makefile.am

2018-04-11 Thread Chris Johns
On 12/04/2018 14:58, Sebastian Huber wrote: > On 11/04/18 23:09, Chris Johns wrote: >> Is it a requirement for Makefile.am we avoid line continuation? > > For the source moves in the BSP tree I need Makefile.am which are friendly for > automatic modification. The line continuation makes this a

Re: [PATCH 07/12] bsps: Avoid line continuation in Makefile.am

2018-04-11 Thread Sebastian Huber
On 11/04/18 23:09, Chris Johns wrote: Is it a requirement for Makefile.am we avoid line continuation? For the source moves in the BSP tree I need Makefile.am which are friendly for automatic modification. The line continuation makes this a little bit more difficult. I had a choice and

Re: [PATCH 07/12] bsps: Avoid line continuation in Makefile.am

2018-04-11 Thread Joel Sherrill
On Wed, Apr 11, 2018 at 4:09 PM, Chris Johns wrote: > Is it a requirement for Makefile.am we avoid line continuation? > > I had a choice and wrapped lines in the testsuites and without any > guidelines I > choose a more compact format. It was easy to do with python's textwrap >

Re: [PATCH 07/12] bsps: Avoid line continuation in Makefile.am

2018-04-11 Thread Chris Johns
Is it a requirement for Makefile.am we avoid line continuation? I had a choice and wrapped lines in the testsuites and without any guidelines I choose a more compact format. It was easy to do with python's textwrap module. At some point I think it would be good to collect together what we want