Skip to content

Commit

Permalink
common.mk: no purelib
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
nobu committed Nov 19, 2012
1 parent b999f95 commit a824a61
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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>

* .travis.yml (script): add OPTS=-v, requested by @_ko1.
Expand Down
1 change: 1 addition & 0 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ RUNCMD = $(SHELL)
CHDIR = @CHDIR@
exec = exec
NULL = /dev/null
PATH_SEPARATOR = @PATH_SEPARATOR@

#### Start of system configuration section. ####

Expand Down
2 changes: 1 addition & 1 deletion common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Q1 = $(V:1=)
Q = $(Q1:0=@)
ECHO = $(ECHO1:0=@echo)

RUBYLIB = -
RUBYLIB = $(PATH_SEPARATOR)
RUBYOPT = -
RUN_OPTS = --disable-gems

Expand Down
1 change: 1 addition & 0 deletions win32/Makefile.sub
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ RUNCMD = $(COMSPEC) /c
MKFILES = Makefile
NULL = nul
CHDIR = cd
PATH_SEPARATOR = ;

!ifndef MFLAGS
MFLAGS=-l
Expand Down

0 comments on commit a824a61

Please sign in to comment.