diff options
| author | yui-knk <spiketeika@gmail.com> | 2025-01-12 09:54:04 +0900 |
|---|---|---|
| committer | Yuichiro Kaneko <spiketeika@gmail.com> | 2025-01-13 09:23:31 +0900 |
| commit | 84f0d2dd4135d59ff0c65370435255d2a97e574e (patch) | |
| tree | b0893e377ded88045a47fa7f6288655f7bf94759 | |
| parent | 566f9463c2be0010815c6521b32c5067a6fff699 (diff) | |
Stop passing `-t` and `-v` on ripper build
Both of them are debug option.
Let's use `YFLAGS` for parse.y build if needed.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/12555
| -rw-r--r-- | ext/ripper/depend | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ripper/depend b/ext/ripper/depend index fe6bd872bd..68a5558779 100644 --- a/ext/ripper/depend +++ b/ext/ripper/depend @@ -12,7 +12,7 @@ ripper.o: ripper.c .y.c: $(ECHO) compiling compiler $< - $(Q) $(BISON) -t -v -o$@ - $< < $< + $(Q) $(BISON) -o$@ - $< < $< all: check static: check |
