summaryrefslogtreecommitdiff
path: root/yjit/yjit.mk
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2022-12-13 22:25:47 -0800
committerTakashi Kokubun <takashikkbn@gmail.com>2022-12-13 22:26:24 -0800
commit65dfe2eea80bef95c1bebc990780314f8118ec0d (patch)
treeeab892400415abb8b377e8fa19be4198f80db14a /yjit/yjit.mk
parent00acc9b05762df8bb86fbb7499b38f00ad331829 (diff)
downloadruby-65dfe2eea80bef95c1bebc990780314f8118ec0d.tar.gz
Suppress the output of `if [ 'xyes' = xyes ];` code
itself
Diffstat (limited to 'yjit/yjit.mk')
-rw-r--r--yjit/yjit.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/yjit/yjit.mk b/yjit/yjit.mk
index cc7b42d26a..bcfe902be7 100644
--- a/yjit/yjit.mk
+++ b/yjit/yjit.mk
@@ -62,7 +62,7 @@ ifneq ($(strip $(CARGO)),) # if configure found Cargo
.PHONY: yjit-bindgen yjit-bindgen-show-unused
yjit-bindgen: yjit.$(OBJEXT)
YJIT_SRC_ROOT_PATH='$(top_srcdir)' $(CARGO) run --manifest-path '$(top_srcdir)/yjit/bindgen/Cargo.toml' -- $(CFLAGS) $(XCFLAGS) $(CPPFLAGS)
- if [ 'x$(HAVE_GIT)' = xyes ]; then $(GIT) -C "$(top_srcdir)" diff --exit-code yjit/src/cruby_bindings.inc.rs; fi
+ $(Q) if [ 'x$(HAVE_GIT)' = xyes ]; then $(GIT) -C "$(top_srcdir)" diff --exit-code yjit/src/cruby_bindings.inc.rs; fi
check-yjit-bindgen-unused: yjit.$(OBJEXT)
RUST_LOG=warn YJIT_SRC_ROOT_PATH='$(top_srcdir)' $(CARGO) run --manifest-path '$(top_srcdir)/yjit/bindgen/Cargo.toml' -- $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) 2>&1 | (! grep "unused option: --allow")