diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-10-22 06:24:19 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-10-22 06:24:19 +0000 |
| commit | 1aff863002c7723b680ffeef56dccfeaa11c35d0 (patch) | |
| tree | 0c6b6460ce7a6d08e204322c6624980835b7590b | |
| parent | 0b178b8bed6061a16427aba8264b75ae19756fc8 (diff) | |
| download | ruby-1aff863002c7723b680ffeef56dccfeaa11c35d0.tar.gz ruby-1aff863002c7723b680ffeef56dccfeaa11c35d0.tar.xz ruby-1aff863002c7723b680ffeef56dccfeaa11c35d0.zip | |
* ext/extmk.rb (extmake): add install: target to dummy Makefile.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2980 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | ext/extmk.rb | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -1,7 +1,9 @@ -Tue Oct 22 10:13:05 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net> +Tue Oct 22 15:23:19 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net> * 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 5bb32f584..c98afdf44 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 |
