mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* win32/setup.mak (BASERUBY): quit with an error when BASERUBY was not
able to set, just like configure.in does. [ruby-dev:42782] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30236 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2d39e5265f
commit
c5d383bae1
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Fri Dec 17 13:26:54 2010 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* win32/setup.mak (BASERUBY): quit with an error when BASERUBY was not
|
||||
able to set, just like configure.in does. [ruby-dev:42782]
|
||||
|
||||
Fri Dec 17 07:04:09 2010 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* iseq.c: parenthesize macro arguments.
|
||||
|
|
|
@ -61,6 +61,9 @@ NTVER = $(NTVER)
|
|||
<<
|
||||
!if !defined(BASERUBY)
|
||||
@for %I in (ruby.exe) do @echo BASERUBY = %~s$$PATH:I>> $(MAKEFILE)
|
||||
@echo !if "$$(BASERUBY)" == "">> $(MAKEFILE)
|
||||
@echo BASERUBY = echo executable host ruby is required. use --with-baseruby option.^& exit 1 >> $(MAKEFILE)
|
||||
@echo !endif>> $(MAKEFILE)
|
||||
!endif
|
||||
|
||||
-system-vars-: -runtime- -unicows-
|
||||
|
|
Loading…
Reference in a new issue