diff options
| author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-08-14 16:09:00 +0000 |
|---|---|---|
| committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-08-14 16:09:00 +0000 |
| commit | 5aed33710b9692369eba207f9655adc2b842bade (patch) | |
| tree | a22f0072c25107507833ca45e67317fea1b6f84a | |
| parent | d1032e518e0c70f64efd68bde6c871d9310ba6f9 (diff) | |
| download | ruby-5aed33710b9692369eba207f9655adc2b842bade.tar.gz ruby-5aed33710b9692369eba207f9655adc2b842bade.tar.xz ruby-5aed33710b9692369eba207f9655adc2b842bade.zip | |
* common.mk ({$(srcdir)}.y.c): escape backslash.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18631 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | common.mk | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Fri Aug 15 01:07:16 2008 NARUSE, Yui <naruse@ruby-lang.org> + + * common.mk ({$(srcdir)}.y.c): escape backslash. + Fri Aug 15 01:05:39 2008 Tanaka Akira <akr@fsij.org> * transcode.c (econv_primitive_convert): set destination_buffer @@ -392,7 +392,7 @@ PHONY: parse.h {$(VPATH)}parse.h: {$(VPATH)}parse.c {$(srcdir)}.y.c: - $(YACC) -d $(YFLAGS) -o y.tab.c $(<:\=/) + $(YACC) -d $(YFLAGS) -o y.tab.c $(<:\\=/) sed -e "/^#/s!y\.tab\.h!$(@:.c=.h)!" y.tab.h > $(@:.c=.h).new @$(MV) $(@:.c=.h).new $(@:.c=.h) sed -f $(srcdir)/tool/ytab.sed -e "/^#/s!y\.tab\.c!$@!" y.tab.c > $@.new |
