Fix #line directive filename of ripper.c

Before:

```c
/* First part of user prologue.  */
#line 14 "parse.y"
```

After:

```c
/* First part of user prologue.  */
#line 14 "ripper.y"
```
This commit is contained in:
yui-knk 2023-07-16 11:57:13 +09:00 committed by Yuichiro Kaneko
parent 5c77402d88
commit 0a570a0069
Notes: git 2023-07-16 10:27:28 +00:00

View File

@ -12,7 +12,7 @@ ripper.o: ripper.c
.y.c: .y.c:
$(ECHO) compiling compiler $< $(ECHO) compiling compiler $<
$(Q) $(BISON) -t -v -o$@ -h$*.h - parse.y < $< $(Q) $(BISON) -t -v -o$@ -h$*.h - $< < $<
all: check all: check
static: check static: check