aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-10-20 00:42:43 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-10-20 00:42:43 +0000
commit7f60c0289c1e682b622610ca9d36ded21356f532 (patch)
treed16e4b365a158621aa14a423b2503e0283f5bb74
parentefbe6c1d7d304f3ad29152d27a3a65bef27c93af (diff)
downloadruby-7f60c0289c1e682b622610ca9d36ded21356f532.tar.gz
* 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@9426 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog20
-rw-r--r--lib/mkmf.rb4
2 files changed, 15 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index 466464858b..7303bb7c58 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Thu Oct 20 09:36:06 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
@@ -523,7 +529,7 @@ Tue Sep 20 17:26:42 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
Tue Sep 20 17:14:10 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
- * io.c: PIPE_BUF is not defined in BeOS. use _POSIX_PIPE_BUF instead.
+ * io.c: PIPE_BUF is not defined on BeOS. use _POSIX_PIPE_BUF instead.
[ruby-dev:27185]
Tue Sep 20 17:10:38 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
@@ -1011,7 +1017,7 @@ Tue Sep 13 14:27:47 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
because of crypt argument's constness mismatch. (I hope this works)
(http://mput.dip.jp/autobuild/ruby-trunk/log/20050913T110001.gz)
-Tue Sep 13 12:33:05 2005 <why@ruby-lang.org>
+Tue Sep 13 12:33:05 2005 why the lucky stiff <why@ruby-lang.org>
* lib/yaml.rb: reworking YAML::Stream to use the new
emitter.
@@ -1025,12 +1031,12 @@ Tue Sep 13 12:33:05 2005 <why@ruby-lang.org>
continue support of Object#to_yaml_type.
* ext/syck/rubyext.c: new emitter code. yaml_new and yaml_initialize
- get called, should they be present. consolidated all the diaspora of internal
- node types into the family below YAML::Syck::Node -- Map,
+ get called, should they be present. consolidated all the diaspora of internal node types into the family below YAML::Syck::Node -- Map,
Seq, Scalar -- all of whom are SyckNode structs pointing to
- Ruby data. moved Object#yaml_new into the node_import and made it the
- default behavior. the target_class is always called wih yaml_new, prepended
- a parameter, which is the klass. loaded nodes through GenericResolver show their style.
+ Ruby data. moved Object#yaml_new into the node_import and made it
+ the default behavior. the target_class is always called wih
+ yaml_new, prepended a parameter, which is the klass. loaded nodes
+ through GenericResolver show their style.
new Resolver#tagurize converts type ids to taguris.
* ext/syck/implicit.re: were 'y' and 'n' seriously omitted??
diff --git a/lib/mkmf.rb b/lib/mkmf.rb
index bc89d5c8ec..e8acbf2e40 100644
--- a/lib/mkmf.rb
+++ b/lib/mkmf.rb
@@ -1110,8 +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:\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