diff options
| author | nagachika <nagachika@ruby-lang.org> | 2022-10-15 16:32:00 +0900 |
|---|---|---|
| committer | nagachika <nagachika@ruby-lang.org> | 2022-10-15 16:32:00 +0900 |
| commit | d3f464094d9a1308a32d34faa9055fa86c916828 (patch) | |
| tree | 5fe9f103ba4de9c24e9db4523cbdff0f2accaded | |
| parent | 69f7bc8675ed467259a41312e2f62b3d578d2a10 (diff) | |
merge revision(s) 3112475469e35b522448858d23ee1651532276e7:
Skip build extensions again on mswin and mingw
---
tool/rbinstall.rb | 3 +++
1 file changed, 3 insertions(+)
| -rwxr-xr-x | tool/rbinstall.rb | 3 | ||||
| -rw-r--r-- | version.h | 2 |
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} @@ -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 |
