diff --git a/Makefile.coq.local b/Makefile.coq.local index f41aa5d6a4b110b0b3e5e43e0e1757b0a964ae1a..f252e2c05eedde2cdd1ab57d74ced9fb06b00480 100644 --- a/Makefile.coq.local +++ b/Makefile.coq.local @@ -39,7 +39,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