From 6073c68242fd21c37396523ad699068d230c68ac Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 22 Oct 2002 06:24:19 +0000 Subject: [PATCH] * ext/extmk.rb (extmake): add install: target to dummy Makefile. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2980 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 +++- ext/extmk.rb | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index fa14d763ed..7c7ad40b44 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,9 @@ -Tue Oct 22 10:13:05 2002 Nobuyoshi Nakada +Tue Oct 22 15:23:19 2002 Nobuyoshi Nakada * instruby.rb: add dryrun mode. + * ext/extmk.rb (extmake): add install: target to dummy Makefile. + * ext/extmk.rb (extmake): avoid Borland make's quirk behavior. * lib/mkmf.rb (link_command): opt is not a makefile macro. diff --git a/ext/extmk.rb b/ext/extmk.rb index 5bb32f5843..c98afdf440 100644 --- a/ext/extmk.rb +++ b/ext/extmk.rb @@ -74,7 +74,7 @@ def extmake(target) end else open("./Makefile", "w") {|f| - f.print configuration($srcdir), makerules(nil) + f.print configuration($srcdir), makerules(nil), "install:\n" } end if $static