From d512f1ad04df4ef0659e8df7929554b4a40a5f33 Mon Sep 17 00:00:00 2001 From: Ralf Jung <jung@mpi-sws.org> Date: Thu, 25 May 2023 12:02:01 +0200 Subject: [PATCH] avoid deprecated fgrep --- Makefile.coq.local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.coq.local b/Makefile.coq.local index 1c985e35..9efd041f 100644 --- a/Makefile.coq.local +++ b/Makefile.coq.local @@ -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 -- GitLab