diff --git a/Makefile.coq.local b/Makefile.coq.local index 432f62cf324b33116ced38ceb24bff205da181c2..8674492bf7e43f11188b077e5c4dbd60e1aa915e 100644 --- a/Makefile.coq.local +++ b/Makefile.coq.local @@ -5,6 +5,6 @@ style: $(VFILES) # Make sure everything imports the options. $(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 ; \ done .PHONY: style