mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47641 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
eb0e3fe78f
commit
2aa9658730
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Fri Sep 19 15:48:09 2014 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
|
* 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).
|
||||||
|
|
||||||
Fri Sep 19 10:47:03 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Fri Sep 19 10:47:03 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* test/ruby/test_math.rb (TestMath#assert_infinity): Float#finite?
|
* test/ruby/test_math.rb (TestMath#assert_infinity): Float#finite?
|
||||||
|
|
|
@ -377,6 +377,8 @@ VCSUP = $(VCS) rebase $(GITSVNREBASEOPTIONS)
|
||||||
!else if exist($(srcdir)/.git)
|
!else if exist($(srcdir)/.git)
|
||||||
VCS = git
|
VCS = git
|
||||||
VCSUP = $(VCS) pull $(GITPULLOPTIONS)
|
VCSUP = $(VCS) pull $(GITPULLOPTIONS)
|
||||||
|
!ekse
|
||||||
|
VCSUP = rem
|
||||||
!endif
|
!endif
|
||||||
ruby_pc = $(RUBY_BASE_NAME)-$(MAJOR).$(MINOR).pc
|
ruby_pc = $(RUBY_BASE_NAME)-$(MAJOR).$(MINOR).pc
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue