Re: [dpdk-dev] [PATCH] doc: fix build on Windows with meson 0.58

2021-07-09 Thread Thomas Monjalon
01/07/2021 11:57, Bruce Richardson: > On Thu, Jul 01, 2021 at 09:34:04AM +0100, Luca Boccassi wrote: > > On Wed, 2021-06-30 at 19:22 +0300, Dmitry Kozlyuk wrote: > > > The `doc` target used `echo` as its command. > > > On Windows, `echo` is always a shell built-in, there is no binary. > > > Startin

Re: [dpdk-dev] [PATCH] doc: fix build on Windows with meson 0.58

2021-07-01 Thread Bruce Richardson
On Thu, Jul 01, 2021 at 09:34:04AM +0100, Luca Boccassi wrote: > On Wed, 2021-06-30 at 19:22 +0300, Dmitry Kozlyuk wrote: > > The `doc` target used `echo` as its command. > > On Windows, `echo` is always a shell built-in, there is no binary. > > Starting from meson 0.58, `run_target()` always searc

Re: [dpdk-dev] [PATCH] doc: fix build on Windows with meson 0.58

2021-07-01 Thread Luca Boccassi
On Wed, 2021-06-30 at 19:22 +0300, Dmitry Kozlyuk wrote: > The `doc` target used `echo` as its command. > On Windows, `echo` is always a shell built-in, there is no binary. > Starting from meson 0.58, `run_target()` always searches for command > executable and no longer accepts `echo` as such on Wi

[dpdk-dev] [PATCH] doc: fix build on Windows with meson 0.58

2021-06-30 Thread Dmitry Kozlyuk
The `doc` target used `echo` as its command. On Windows, `echo` is always a shell built-in, there is no binary. Starting from meson 0.58, `run_target()` always searches for command executable and no longer accepts `echo` as such on Windows. Replace plain `echo` with a Python one-liner. Fixes: d02a