summaryrefslogtreecommitdiff
path: root/common.mk
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-09-29 13:41:59 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-09-29 13:41:59 +0900
commita9ff39087092b21059fca046ace9ca87770692a4 (patch)
treeb7801a8453f22e8f2c6eea615251deee2e6c2809 /common.mk
parentb971f141b20d484c48358e5f2d4d9b6957ccd17a (diff)
Fixed installation failure [Bug #17191]
Try update and extract bundled gems only when baseruby is available. It should be done only when installing from developemental build and not from the tarball, but it is not obvious to differentiate them.
Diffstat (limited to 'common.mk')
-rw-r--r--common.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/common.mk b/common.mk
index 603429bd35..509f09c1fe 100644
--- a/common.mk
+++ b/common.mk
@@ -1296,7 +1296,7 @@ update-config_files: PHONY
config.guess config.sub
refresh-gems: update-bundled_gems prepare-gems
-prepare-gems: update-gems extract-gems
+prepare-gems: $(HAVE_BASERUBY:yes=update-gems) $(HAVE_BASERUBY:yes=extract-gems)
update-gems$(gnumake:yes=-nongnumake): PHONY
$(ECHO) Downloading bundled gem files...