Skip to content

Commit 3f8dd52

Browse files
author
matz
committed
990806-repack
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_3@511 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 88b8c7e commit 3f8dd52

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ext/extmk.rb.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,7 @@ end
308308
def arg_config(config, default=nil)
309309
unless defined? $configure_args
310310
$configure_args = {}
311+
args = "@configure_args@"
311312
if /mswin32/ =~ RUBY_PLATFORM and ENV["CONFIGURE_ARGS"]
312313
args = args + " " + ENV["CONFIGURE_ARGS"]
313314
end

file.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1613,7 +1613,7 @@ Init_File()
16131613
rb_define_singleton_method(rb_cFile, "join", rb_file_s_join, -2);
16141614

16151615
#ifdef DOSISH
1616-
rb_define_const(rb_cFile, "ALT_SEPARATOR", rb_str_new2("\\");
1616+
rb_define_const(rb_cFile, "ALT_SEPARATOR", rb_str_new2("\\"));
16171617
#else
16181618
rb_define_const(rb_cFile, "ALT_SEPARATOR", Qnil);
16191619
#endif

0 commit comments

Comments
 (0)