From a25c0338051af3fe2e917cd4d3d4c42b9f0bcf9e Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Wed, 19 Oct 2022 14:57:07 +0900 Subject: Suppress warning for fgrep >fgrep: warning: fgrep is obsolescent; using ggrep -F --- template/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'template') diff --git a/template/Makefile.in b/template/Makefile.in index 854b0f0014..9b3f785217 100644 --- a/template/Makefile.in +++ b/template/Makefile.in @@ -399,7 +399,7 @@ uncommon.mk: $(srcdir)/common.mk .PHONY: reconfig reconfig-args = $(srcdir)/$(CONFIGURE) $(yes_silence:yes=--silent) $(configure_args) config.status-args = ./config.status $(yes_silence:yes=--silent) --recheck -reconfig-exec-0 = test -t 1 && { : $${CONFIGURE_TTY=yes}; export CONFIGURE_TTY; }; exec 3>&1; exit `exec 4>&1; { "$$@" 3>&- 4>&-; echo $$? 1>&4; } | fgrep -v '(cached)' 1>&3 3>&- 4>&-` +reconfig-exec-0 = test -t 1 && { : $${CONFIGURE_TTY=yes}; export CONFIGURE_TTY; }; exec 3>&1; exit `exec 4>&1; { "$$@" 3>&- 4>&-; echo $$? 1>&4; } | grep -F -v '(cached)' 1>&3 3>&- 4>&-` reconfig-exec-1 = set -x; exec "$$@" reconfig-exec-yes = $(reconfig-exec-1) -- cgit v1.2.1