Skip to content

Commit ee69bb4

Browse files
committed
merge revision(s) r47641,r47642,r47644: [Backport ruby#10262]
* win32/win32.c (VCSUP): nothing to do if this worktree is not under any VCS (it means that the worktree may be from the release package). * win32/Makefile.sub (VCSUP): nothing to do if this worktree is not under any VCS (it means that the worktree may be from the release package). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_1@47702 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent c8ec78c commit ee69bb4

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

ChangeLog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Wed Sep 24 02:21:41 2014 NAKAMURA Usaku <usa@ruby-lang.org>
2+
3+
* win32/Makefile.sub (VCSUP): nothing to do if this worktree is not
4+
under any VCS (it means that the worktree may be from the release
5+
package).
6+
17
Wed Sep 24 02:06:33 2014 Tanaka Akira <akr@fsij.org>
28

39
* test/ruby/test_time_tz.rb: Fix test error with tzdata-2014g.

version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#define RUBY_VERSION "2.1.4"
22
#define RUBY_RELEASE_DATE "2014-09-24"
3-
#define RUBY_PATCHLEVEL 245
3+
#define RUBY_PATCHLEVEL 246
44

55
#define RUBY_RELEASE_YEAR 2014
66
#define RUBY_RELEASE_MONTH 9

win32/Makefile.sub

+2
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,8 @@ VCSUP = $(VCS) rebase $(GITSVNREBASEOPTIONS)
377377
!else if exist($(srcdir)/.git)
378378
VCS = git
379379
VCSUP = $(VCS) pull $(GITPULLOPTIONS)
380+
!else
381+
VCSUP = rem
380382
!endif
381383
ruby_pc = $(RUBY_BASE_NAME)-$(MAJOR).$(MINOR).pc
382384

0 commit comments

Comments
 (0)