Re: [PATCH] buildsys: Preserve arguments passed on

2019-04-05 Thread Joseph Benden
On 4/5/19 2:58 AM, Bernhard Reutner-Fischer wrote: > On Thu, 4 Apr 2019 09:41:52 -0700 > Joseph Benden wrote: > >> On 4/4/19 8:04 AM, Bernhard Reutner-Fischer wrote: >>> On Fri, 22 Mar 2019 at 03:36, Joseph Benden wrote: This patch ensures all arguments are quoted, during command-line

Re: [PATCH] buildsys: Preserve arguments passed on

2019-04-05 Thread Bernhard Reutner-Fischer
On Thu, 4 Apr 2019 09:41:52 -0700 Joseph Benden wrote: > On 4/4/19 8:04 AM, Bernhard Reutner-Fischer wrote: > > On Fri, 22 Mar 2019 at 03:36, Joseph Benden wrote: > >> This patch ensures all arguments are quoted, during command-line > >> construction. > >> > >> This fixes compilation where

Re: [PATCH] buildsys: Preserve arguments passed on

2019-04-04 Thread Joseph Benden
On 4/4/19 8:04 AM, Bernhard Reutner-Fischer wrote: > On Fri, 22 Mar 2019 at 03:36, Joseph Benden wrote: >> This patch ensures all arguments are quoted, during command-line >> construction. >> >> This fixes compilation where spaces occur within the arguments. > Can you give me an example please? >

Re: [PATCH] buildsys: Preserve arguments passed on

2019-04-04 Thread Bernhard Reutner-Fischer
On Fri, 22 Mar 2019 at 03:36, Joseph Benden wrote: > > This patch ensures all arguments are quoted, during command-line > construction. > > This fixes compilation where spaces occur within the arguments. Can you give me an example please? g++-uc -DFOO="BAR BAZ" -c ... ? TIA,

[PATCH] buildsys: Preserve arguments passed on

2019-03-21 Thread Joseph Benden
This patch ensures all arguments are quoted, during command-line construction. This fixes compilation where spaces occur within the arguments. Additional Information: https://github.com/openwrt/openwrt/pull/1620 Signed-off-by: Joseph Benden --- bin/Makefile.in | 4 ++-- 1 file changed, 2