Skip to content

Commit 1a030f5

Browse files
committed
Fix pathname.inc path
1 parent 9646cc0 commit 1a030f5

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

ext/pathname/depend

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
ext/pathname/pathname.$(OBJEXT): {$(srcdir)}ext/pathname/pathname.c
2-
@$(ECHO) compiling $<
1+
ext/pathname/pathname.$(OBJEXT): $(srcdir)/ext/pathname/pathname.c
2+
@$(ECHO) compiling ext/pathname/pathname.c
33
$(Q) $(MAKEDIRS) $(@D)
4-
$(Q) $(CC) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<
4+
$(Q) $(CC) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$(srcdir)/ext/pathname/pathname.c
55

66
# AUTOGENERATED DEPENDENCIES START
77
ext/pathname/pathname.$(OBJEXT): $(RUBY_EXTCONF_H)
@@ -176,4 +176,5 @@ ext/pathname/pathname.$(OBJEXT): $(hdrdir)/ruby/oniguruma.h
176176
ext/pathname/pathname.$(OBJEXT): $(hdrdir)/ruby/ruby.h
177177
ext/pathname/pathname.$(OBJEXT): $(hdrdir)/ruby/st.h
178178
ext/pathname/pathname.$(OBJEXT): $(hdrdir)/ruby/subst.h
179+
ext/pathname/pathname.$(OBJEXT): $(srcdir)/ext/pathname/pathname.c
179180
# AUTOGENERATED DEPENDENCIES END

ext/pathname/pathname.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1667,4 +1667,4 @@ InitVM_pathname(void)
16671667
id_zero_p = rb_intern("zero?");
16681668
}
16691669

1670-
#include "pathname.rbinc"
1670+
#include "ext/pathname/pathname.rbinc"

0 commit comments

Comments
 (0)