diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-10-19 22:55:51 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-10-19 22:55:51 +0000 |
commit | 834bd9db0bee977bf4f94bf10562ab073c7bb57f (patch) | |
tree | e71cc4f7b8624a69644519aeb0d04cb8c03dabaa | |
parent | c033f534c6964da851f05016ace710bda0709145 (diff) |
* lib/mkmf.rb (create_makefile): get rid of a restriction
of Borland make. fixed: [ruby-dev:27460]
* ext/ripper/depend: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9423 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | ext/ripper/depend | 3 | ||||
-rw-r--r-- | lib/mkmf.rb | 3 |
3 files changed, 11 insertions, 2 deletions
@@ -1,3 +1,10 @@ +Thu Oct 20 07:55:09 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * lib/mkmf.rb (create_makefile): get rid of a restriction + of Borland make. fixed: [ruby-dev:27460] + + * ext/ripper/depend: ditto. + Wed Oct 19 23:58:03 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> * lib/mkmf.rb (create_makefile): do not create unnecessary empty diff --git a/ext/ripper/depend b/ext/ripper/depend index 4f5c822308..0e54262759 100644 --- a/ext/ripper/depend +++ b/ext/ripper/depend @@ -10,7 +10,8 @@ ripper.o: ripper.c $(hdrdir)/lex.c eventids1.c $(srcdir)/eventids2.c eventids2ta .y.c: $(BISON) -t -v -o$@ $< -all static: check +all: check +static: check ripper.y: $(srcdir)/tools/preproc.rb $(hdrdir)/parse.y $(RUBY) $(srcdir)/tools/preproc.rb $(hdrdir)/parse.y --output=$@ diff --git a/lib/mkmf.rb b/lib/mkmf.rb index 2ae5bc8d84..bc89d5c8ec 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -1110,7 +1110,8 @@ static: $(STATIC_LIB)#{$extout ? " install-rb" : ""} end mfile.print("install-rb: pre-install-rb install-rb-default\n") mfile.print("install-rb-default: pre-install-rb-default\n") - mfile.print("pre-install-rb pre-install-rb-default:\n") + mfile.print("pre-install-rb:\n") + mfile.print("pre-install-rb-default:\n") for sfx, i in [["-default", [["lib/**/*.rb", "$(RUBYLIBDIR)", "lib"]]], ["", $INSTALLFILES]] files = install_files(mfile, i, nil, srcprefix) or next for dir, *files in files |