diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-10-30 16:40:29 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-10-30 16:40:29 +0000 |
commit | d0c686f661fed1c37fe880a165f7e770bcbf3b39 (patch) | |
tree | 9c32062dff7327c517caf8ea43cebadd13e40265 /win32 | |
parent | c6da742a3bd1c9fcad592a871b3387f0a63cf76b (diff) | |
download | ruby-d0c686f661fed1c37fe880a165f7e770bcbf3b39.tar.gz ruby-d0c686f661fed1c37fe880a165f7e770bcbf3b39.tar.xz ruby-d0c686f661fed1c37fe880a165f7e770bcbf3b39.zip |
* wince/Makefile.sub, win32/Makefile.sub (.y.c): allow white spaces
at the beginning of line to remove by sed. (ruby-bugs-ja PR#580)
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4875 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r-- | win32/Makefile.sub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/Makefile.sub b/win32/Makefile.sub index cc136ff28..0922ee2e1 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -513,7 +513,7 @@ $(RUBY_INSTALL_NAME).rc $(RUBYW_INSTALL_NAME).rc $(RUBY_SO_NAME).rc: rbconfig.rb {$(srcdir)}.y.c: $(YACC) $(YFLAGS) $(<:\=/) - sed -e "s!^extern char \*getenv();!/* & */!;s/^\(#.*\)y\.tab/\1parse/" y.tab.c > $@ + sed -e "s!^ *extern char \*getenv();!/* & */!;s/^\(#.*\)y\.tab/\1parse/" y.tab.c > $@ @del y.tab.c {$(srcdir)}parse.c: parse.y |