Skip to content

Commit 0b01850

Browse files
committed
* runruby.rb: fix incomplete backport r12339.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@13461 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 84cc67f commit 0b01850

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Mon Sep 17 05:01:55 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
2+
3+
* runruby.rb: fix incomplete backport r12339.
4+
15
Mon Sep 17 04:56:28 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
26

37
* test/thread/test_thread.rb (test_local_barrier),

runruby.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,12 @@
3232
abort "#{ruby} is not found.\nTry `make' first, then `make test', please.\n"
3333
end
3434

35-
libs = [abs_archdir, File.expand_path("lib", srcdir)]
35+
libs = [abs_archdir]
3636
if extout
3737
abs_extout = File.expand_path(extout)
3838
libs << File.expand_path("common", abs_extout) << File.expand_path(RUBY_PLATFORM, abs_extout)
3939
end
40+
libs << File.expand_path("lib", srcdir)
4041
config["bindir"] = abs_archdir
4142
ENV["RUBY"] = File.expand_path(ruby)
4243
ENV["PATH"] = [abs_archdir, ENV["PATH"]].compact.join(File::PATH_SEPARATOR)

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define RUBY_RELEASE_DATE "2007-09-17"
33
#define RUBY_VERSION_CODE 186
44
#define RUBY_RELEASE_CODE 20070917
5-
#define RUBY_PATCHLEVEL 104
5+
#define RUBY_PATCHLEVEL 105
66

77
#define RUBY_VERSION_MAJOR 1
88
#define RUBY_VERSION_MINOR 8

0 commit comments

Comments
 (0)