Skip to content

Commit

Permalink
* lib/mkmf.rb (create_makefile): Borland make seems not to allow
Browse files Browse the repository at this point in the history
  empty dependency list. If this change is not good, please correct
  it.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9426 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
ocean committed Oct 20, 2005
1 parent 55787e8 commit e4a7a42
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
@@ -1,3 +1,9 @@
Thu Oct 20 09:37:15 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>

* lib/mkmf.rb (create_makefile): Borland make seems not to allow
empty dependency list. If this change is not good, please correct
it.

Thu Oct 20 07:55:09 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>

* lib/mkmf.rb (create_makefile): get rid of a restriction
Expand Down
4 changes: 2 additions & 2 deletions lib/mkmf.rb
Expand Up @@ -1108,8 +1108,8 @@ def create_makefile(target, srcprefix = nil)
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:\n")
mfile.print("pre-install-rb-default:\n")
mfile.print("pre-install-rb: Makefile\n")
mfile.print("pre-install-rb-default: Makefile\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
Expand Down

0 comments on commit e4a7a42

Please sign in to comment.