diff options
author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2023-05-14 09:28:53 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2023-05-14 15:38:48 +0900 |
commit | bdaa491565e31e3615d5da61551e08c7868db272 (patch) | |
tree | e33cf5dc15f268a6cf9bfbb66d1be00b0bba2a5f /ext | |
parent | 3150516aab92c63fc22cf73d588e4584a8753b76 (diff) | |
download | ruby-bdaa491565e31e3615d5da61551e08c7868db272.tar.gz |
Add user argument to some macros used by bison
Diffstat (limited to 'ext')
-rw-r--r-- | ext/ripper/depend | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/ext/ripper/depend b/ext/ripper/depend index a06330b645..aac09b085a 100644 --- a/ext/ripper/depend +++ b/ext/ripper/depend @@ -11,10 +11,7 @@ ripper.o: ripper.c .y.c: $(ECHO) compiling compiler $< - $(ECHO) $(BISON) - $(Q) $(BISON) -t -v -oy.tab.c $< - $(Q) sed -e "/^#/s!y\.tab\.c!$@!" -f $(top_srcdir)/tool/ytab.sed y.tab.c > $@ - @$(RM) y.tab.c + $(Q) $(BISON) -t -v -o$@ -h$*.h $< all: check static: check |