summaryrefslogtreecommitdiff
path: root/defs
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-06-19 14:11:52 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-06-19 14:11:52 +0000
commit3f3c86faaa83f928c902249b0f67d68e7f9fae20 (patch)
treed079c8e46b58084ceee23fccd42d0a91890d36b0 /defs
parentbef2e29aab53d2d15006fad7de9e56f2f44c7778 (diff)
common.mk: fix dependencies
* common.mk, defs/gmake.mk: fix install and uninstall dependencies with parallel make. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46466 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'defs')
-rw-r--r--defs/gmake.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/defs/gmake.mk b/defs/gmake.mk
index c0ad9c7b74..51991d5f81 100644
--- a/defs/gmake.mk
+++ b/defs/gmake.mk
@@ -48,5 +48,6 @@ $(word 1,$(install-targets)): $(word 0,$(install-targets))
endif
ifneq ($(filter reinstall,$(MAKECMDGOALS)),)
-install: uninstall
+install-prereq: uninstall
+uninstall sudo-precheck: all $(if $(filter all,$(INSTALLDOC)),docs)
endif