aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.in2
-rw-r--r--win32/Makefile.sub2
2 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index 4f5c58baad..1db6bd81ea 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -486,6 +486,7 @@ update-mspec:
$(Q1:0=:) set -x; \
exec git clone $(MSPEC_GIT_URL) spec/mspec; \
fi
+ $(Q)cd $(srcdir)/spec/mspec && exec git --no-pager log -1 --oneline
update-rubyspec: update-mspec
@$(CHDIR) $(srcdir); \
@@ -499,6 +500,7 @@ update-rubyspec: update-mspec
$(Q1:0=:) set -x; \
exec git clone $(RUBYSPEC_GIT_URL) spec/rubyspec; \
fi
+ $(Q)cd $(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
diff --git a/win32/Makefile.sub b/win32/Makefile.sub
index 47b55bcdb1..06e6f5075b 100644
--- a/win32/Makefile.sub
+++ b/win32/Makefile.sub
@@ -468,6 +468,7 @@ update-mspec:
@echo retrieving mspec ...
@cd $(srcdir:/=\) && git clone $(MSPEC_GIT_URL) spec/mspec
!endif
+ @cd $(srcdir:/=\)\spec\mspec && git --no-pager log -1 --oneline
update-rubyspec: update-mspec
!if exist($(srcdir)/spec/rubyspec)
@@ -477,6 +478,7 @@ update-rubyspec: update-mspec
@echo retrieving rubyspec ...
@cd $(srcdir:/=\) && git clone $(RUBYSPEC_GIT_URL) spec/rubyspec
!endif
+ @cd $(srcdir:/=\)\spec\rubyspec && git --no-pager log -1 --oneline
test-rubyspec-precheck:
!if !exist($(srcdir)/spec/rubyspec/.)