From d586a664ee07169dfd218aebb963f3114663e68d Mon Sep 17 00:00:00 2001 From: ocean Date: Thu, 20 Oct 2005 00:42:43 +0000 Subject: * lib/mkmf.rb (create_makefile): Borland make seems not to allow empty dependency list. If this change is not good, please correct it. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9426 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ lib/mkmf.rb | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a07f88c82..12651b11d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Thu Oct 20 09:37:15 2005 Hirokazu Yamamoto + + * 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 * lib/mkmf.rb (create_makefile): get rid of a restriction diff --git a/lib/mkmf.rb b/lib/mkmf.rb index ec29f91cc..9fe0d9bbf 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -1108,8 +1108,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:\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 -- cgit