All extensions in bundled gems are built by build-ext now

`RbInstall::GemInstaller#build_extensions` has nothing to do.
This commit is contained in:
Nobuyoshi Nakada 2022-08-12 13:38:21 +09:00
parent d9f1b8baa3
commit 04815ea968
Notes: git 2022-08-12 15:56:03 +09:00

View File

@ -904,11 +904,8 @@ module RbInstall
RbInstall.no_write(options) {super}
end
if RbConfig::CONFIG["LIBRUBY_RELATIVE"] == "yes" || RbConfig::CONFIG["CROSS_COMPILING"] == "yes" || ENV["DESTDIR"]
# TODO: always build extensions in bundled gems by build-ext and
# install the built binaries.
def build_extensions
end
# Now build-ext builds all extensions including bundled gems.
def build_extensions
end
def generate_bin_script(filename, bindir)