Skip to content

Commit 822799c

Browse files
committed
Fixed warning non-POSIX variable name
Ticket: CFE-2780 Signed-off-by: Lars Erik Wik <lars.erik.wik@northern.tech>
1 parent 65cbcda commit 822799c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/Makefile.am

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ MAINTAINERCLEANFILES = Makefile.in mdate-sh
2929

3030
# only re-run the outputs for examples that already have an example_output block
3131
remake:
32-
perl ./remake_outputs.pl $(shell grep -l example_output $(dist_examples_DATA))
32+
perl ./remake_outputs.pl `shell grep -l example_output $(dist_examples_DATA)`
3333

3434
recheck:
35-
perl ./remake_outputs.pl -c $(shell grep -l example_output $(dist_examples_DATA))
35+
perl ./remake_outputs.pl -c `shell grep -l example_output $(dist_examples_DATA)`
3636

3737
recheck_verbose:
38-
perl ./remake_outputs.pl -v -c $(shell grep -l example_output $(dist_examples_DATA))
38+
perl ./remake_outputs.pl -v -c `shell grep -l example_output $(dist_examples_DATA)`

0 commit comments

Comments
 (0)