Skip to content

Commit

Permalink
Fixed warning non-POSIX variable name
Browse files Browse the repository at this point in the history
Ticket: CFE-2780
Signed-off-by: Lars Erik Wik <[email protected]>
  • Loading branch information
larsewi committed Jan 10, 2025
1 parent d4c373e commit 03e0625
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ MAINTAINERCLEANFILES = Makefile.in mdate-sh

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

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

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

0 comments on commit 03e0625

Please sign in to comment.