summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornagachika <nagachika@ruby-lang.org>2022-10-15 16:32:00 +0900
committernagachika <nagachika@ruby-lang.org>2022-10-15 16:32:00 +0900
commitd3f464094d9a1308a32d34faa9055fa86c916828 (patch)
tree5fe9f103ba4de9c24e9db4523cbdff0f2accaded
parent69f7bc8675ed467259a41312e2f62b3d578d2a10 (diff)
merge revision(s) 3112475469e35b522448858d23ee1651532276e7:
Skip build extensions again on mswin and mingw --- tool/rbinstall.rb | 3 +++ 1 file changed, 3 insertions(+)
-rwxr-xr-xtool/rbinstall.rb3
-rw-r--r--version.h2
2 files changed, 4 insertions, 1 deletions
diff --git a/tool/rbinstall.rb b/tool/rbinstall.rb
index 4832d60487..2e1b6d4bd8 100755
--- a/tool/rbinstall.rb
+++ b/tool/rbinstall.rb
@@ -848,6 +848,9 @@ module RbInstall
def write_cache_file
end
+ def build_extensions
+ end if /mswin|mingw/ =~ RUBY_PLATFORM
+
def shebang(bin_file_name)
path = File.join(gem_dir, spec.bindir, bin_file_name)
first_line = File.open(path, "rb") {|file| file.gets}
diff --git a/version.h b/version.h
index 5daa3bbf68..8d6a959f18 100644
--- a/version.h
+++ b/version.h
@@ -11,7 +11,7 @@
# define RUBY_VERSION_MINOR RUBY_API_VERSION_MINOR
#define RUBY_VERSION_TEENY 3
#define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR
-#define RUBY_PATCHLEVEL 81
+#define RUBY_PATCHLEVEL 82
#define RUBY_RELEASE_YEAR 2022
#define RUBY_RELEASE_MONTH 10