common.mk: no purelib
* common.mk (RUBYLIB): purelib option in runruby.rb is deprecated since r28841, so set to an empty list to get rid of a bogus path in child processes, which caused an insecure operation exception in test/ruby/test_encoding.rb:test_unsafe. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37719 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b999f95e70
commit
a824a6187d
@ -1,3 +1,10 @@
|
|||||||
|
Mon Nov 19 16:08:10 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* common.mk (RUBYLIB): purelib option in runruby.rb is deprecated
|
||||||
|
since r28841, so set to an empty list to get rid of a bogus path in
|
||||||
|
child processes, which caused an insecure operation exception in
|
||||||
|
test/ruby/test_encoding.rb:test_unsafe.
|
||||||
|
|
||||||
Mon Nov 19 15:40:50 2012 URABE Shyouhei <shyouhei@ruby-lang.org>
|
Mon Nov 19 15:40:50 2012 URABE Shyouhei <shyouhei@ruby-lang.org>
|
||||||
|
|
||||||
* .travis.yml (script): add OPTS=-v, requested by @_ko1.
|
* .travis.yml (script): add OPTS=-v, requested by @_ko1.
|
||||||
|
@ -6,6 +6,7 @@ RUNCMD = $(SHELL)
|
|||||||
CHDIR = @CHDIR@
|
CHDIR = @CHDIR@
|
||||||
exec = exec
|
exec = exec
|
||||||
NULL = /dev/null
|
NULL = /dev/null
|
||||||
|
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||||
|
|
||||||
#### Start of system configuration section. ####
|
#### Start of system configuration section. ####
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ Q1 = $(V:1=)
|
|||||||
Q = $(Q1:0=@)
|
Q = $(Q1:0=@)
|
||||||
ECHO = $(ECHO1:0=@echo)
|
ECHO = $(ECHO1:0=@echo)
|
||||||
|
|
||||||
RUBYLIB = -
|
RUBYLIB = $(PATH_SEPARATOR)
|
||||||
RUBYOPT = -
|
RUBYOPT = -
|
||||||
RUN_OPTS = --disable-gems
|
RUN_OPTS = --disable-gems
|
||||||
|
|
||||||
|
@ -6,6 +6,7 @@ RUNCMD = $(COMSPEC) /c
|
|||||||
MKFILES = Makefile
|
MKFILES = Makefile
|
||||||
NULL = nul
|
NULL = nul
|
||||||
CHDIR = cd
|
CHDIR = cd
|
||||||
|
PATH_SEPARATOR = ;
|
||||||
|
|
||||||
!ifndef MFLAGS
|
!ifndef MFLAGS
|
||||||
MFLAGS=-l
|
MFLAGS=-l
|
||||||
|
Loading…
x
Reference in New Issue
Block a user