Skip to content
Snippets Groups Projects
Commit d512f1ad authored by Ralf Jung's avatar Ralf Jung
Browse files

avoid deprecated fgrep

parent b632359e
Branches
No related tags found
No related merge requests found
Pipeline #82997 passed
......@@ -5,7 +5,7 @@ style: $(VFILES) coq-lint.sh
# Make sure everything imports the options, and all Instance/Argument/Hint are qualified.
$(SHOW)"COQLINT"
$(HIDE)for FILE in $(VFILES); do \
if ! fgrep -q 'From iris.prelude Require Import options.' "$$FILE"; then echo "ERROR: $$FILE does not import 'options'."; echo; exit 1; fi ; \
if ! grep -F -q 'From iris.prelude Require Import options.' "$$FILE"; then echo "ERROR: $$FILE does not import 'options'."; echo; exit 1; fi ; \
./coq-lint.sh "$$FILE" || exit 1; \
done
.PHONY: style
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment