Skip to content

Commit a824a61

Browse files
committed
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
1 parent b999f95 commit a824a61

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

ChangeLog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Mon Nov 19 16:08:10 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
2+
3+
* common.mk (RUBYLIB): purelib option in runruby.rb is deprecated
4+
since r28841, so set to an empty list to get rid of a bogus path in
5+
child processes, which caused an insecure operation exception in
6+
test/ruby/test_encoding.rb:test_unsafe.
7+
18
Mon Nov 19 15:40:50 2012 URABE Shyouhei <shyouhei@ruby-lang.org>
29

310
* .travis.yml (script): add OPTS=-v, requested by @_ko1.

Makefile.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ RUNCMD = $(SHELL)
66
CHDIR = @CHDIR@
77
exec = exec
88
NULL = /dev/null
9+
PATH_SEPARATOR = @PATH_SEPARATOR@
910

1011
#### Start of system configuration section. ####
1112

common.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Q1 = $(V:1=)
1010
Q = $(Q1:0=@)
1111
ECHO = $(ECHO1:0=@echo)
1212

13-
RUBYLIB = -
13+
RUBYLIB = $(PATH_SEPARATOR)
1414
RUBYOPT = -
1515
RUN_OPTS = --disable-gems
1616

win32/Makefile.sub

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ RUNCMD = $(COMSPEC) /c
66
MKFILES = Makefile
77
NULL = nul
88
CHDIR = cd
9+
PATH_SEPARATOR = ;
910

1011
!ifndef MFLAGS
1112
MFLAGS=-l

0 commit comments

Comments
 (0)