aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authoreregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-05-07 12:01:26 +0000
committereregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-05-07 12:01:26 +0000
commit52df1d0d3370919711c0577aaa42d1a864709885 (patch)
treed56b14fc4366d44dd619bbe21662554936b05539 /Makefile.in
parent706db6e25afec2311781a2127d6ccd7086841de9 (diff)
downloadruby-52df1d0d3370919711c0577aaa42d1a864709885.tar.gz
make update-rubyspec is no longer needed
* Kept a no-op for compatibility. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58594 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in9
1 files changed, 3 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in
index dbf0515508..953a839790 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -477,14 +477,11 @@ update-download:: update-config_files
after-update:: prereq
update-mspec:
- $(Q) $(srcdir)/tool/git-refresh -C $(srcdir)/spec $(Q1:0=-q) \
- $(MSPEC_GIT_URL) mspec $(GIT_OPTS)
- $(Q)$(CHDIR) $(srcdir)/spec/mspec && exec git --no-pager log -1 --oneline
+ $(Q)$(CHDIR) $(srcdir)/spec/mspec && exec git --no-pager log -1 --oneline .
update-rubyspec: update-mspec
- $(Q) $(srcdir)/tool/git-refresh -C $(srcdir)/spec $(Q1:0=-q) \
- $(RUBYSPEC_GIT_URL) rubyspec $(GIT_OPTS)
- $(Q)$(CHDIR) $(srcdir)/spec/rubyspec && exec git --no-pager log -1 --oneline
+ $(Q) echo ruby/spec is now in the MRI repository and make update-rubyspec has no effect
+ $(Q)$(CHDIR) $(srcdir)/spec/rubyspec && exec git --no-pager log -1 --oneline .
test-rubyspec-precheck:
@if [ ! -d $(srcdir)/spec/rubyspec ]; then echo No rubyspec here. make update-rubyspec first.; exit 1; fi