mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Suppress warning for fgrep
>fgrep: warning: fgrep is obsolescent; using ggrep -F
This commit is contained in:
parent
dae843f6b7
commit
a25c033805
Notes:
git
2022-10-19 12:10:19 +00:00
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue