Skip to content

Commit

Permalink
Fix #line directive filename of ripper.c
Browse files Browse the repository at this point in the history
Before:

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

After:

```c
/* First part of user prologue.  */
#line 14 "ripper.y"
```
  • Loading branch information
yui-knk committed Jul 16, 2023
1 parent 5c77402 commit 0a570a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/ripper/depend
Expand Up @@ -12,7 +12,7 @@ ripper.o: ripper.c

.y.c:
$(ECHO) compiling compiler $<
$(Q) $(BISON) -t -v -o$@ -h$*.h - parse.y < $<
$(Q) $(BISON) -t -v -o$@ -h$*.h - $< < $<

all: check
static: check
Expand Down

0 comments on commit 0a570a0

Please sign in to comment.