commit | d2a682f37265a35a90b58bb854143333ba9ccf12 | [log] [tgz] |
---|---|---|
author | Daniel Noom <ggatw@outlook.com> | Thu Dec 24 11:12:42 2020 +0100 |
committer | Carles CufĂ <carles.cufi@nordicsemi.no> | Mon Jan 18 19:08:45 2021 +0100 |
tree | 9352a021cb142de014b202e1262ecff15127ec6b | |
parent | 290d64cb4edc9ba2786ff22d39af9cc3b591a2fc [diff] |
cmake: Fix unexpected token after & In bash a '&&' cannot follow directly after a '&'. So a task that is run in the background should be enclosed in (curly) braces. This: ``` west build -b qemu_x86 -d build/server samples/net/sockets/echo_server\ -- -DOVERLAY_CONFIG=overlay-qemu_802154.conf -DPCAP=capture.pcap west build -t server -d build/server ``` works correctly after this fix. Fixes #29793 Signed-off-by: Daniel Noom <ggatw@outlook.com>