summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-08-22 02:23:08 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-08-22 02:23:08 +0000
commit63546d3ceb4a0e6168218beecdd7b3b11d78e1dc (patch)
tree2d88eb6a645f9c084e67e44dc7c6a2bc096a76e4
parent299df8bcbb9fb761bd45c1c4fce28d20c98355ed (diff)
* lib/mkmf.rb (init_mkmf): should remove mkmf.log too.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_6@13194 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--lib/mkmf.rb1
-rw-r--r--version.h2
3 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index f71f20a74..8a4323285 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Aug 22 11:00:20 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * lib/mkmf.rb (init_mkmf): should remove mkmf.log too.
+
Wed Aug 22 10:57:50 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/openssl/ossl_config.c (ossl_config_set_section): do not
diff --git a/lib/mkmf.rb b/lib/mkmf.rb
index a5ed57bdc..28425242e 100644
--- a/lib/mkmf.rb
+++ b/lib/mkmf.rb
@@ -1449,6 +1449,7 @@ def init_mkmf(config = CONFIG)
$LOCAL_LIBS = ""
$cleanfiles = config_string('CLEANFILES') {|s| Shellwords.shellwords(s)} || []
+ $cleanfiles << "mkmf.log"
$distcleanfiles = config_string('DISTCLEANFILES') {|s| Shellwords.shellwords(s)} || []
$extout ||= nil
diff --git a/version.h b/version.h
index bf5341b36..be3209738 100644
--- a/version.h
+++ b/version.h
@@ -2,7 +2,7 @@
#define RUBY_RELEASE_DATE "2007-08-22"
#define RUBY_VERSION_CODE 186
#define RUBY_RELEASE_CODE 20070822
-#define RUBY_PATCHLEVEL 73
+#define RUBY_PATCHLEVEL 74
#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 8