* lib/mkmf.rb (create_makefile):fixed the variables order because
converter proc refers the separator. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21766 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0834056aec
commit
cdaadbd903
@ -1,3 +1,8 @@
|
|||||||
|
Sun Jan 25 11:50:20 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* lib/mkmf.rb (create_makefile):fixed the variables order because
|
||||||
|
converter proc refers the separator.
|
||||||
|
|
||||||
Sun Jan 25 11:25:10 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Sun Jan 25 11:25:10 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* Makefile.in, win32/Makefile.sub (RMDIRS): remove directory and
|
* Makefile.in, win32/Makefile.sub (RMDIRS): remove directory and
|
||||||
|
@ -1657,12 +1657,12 @@ static: $(STATIC_LIB)#{$extout ? " install-rb" : ""}
|
|||||||
mfile.print CLEANINGS
|
mfile.print CLEANINGS
|
||||||
fsep = config_string('BUILD_FILE_SEPARATOR') {|s| s unless s == "/"}
|
fsep = config_string('BUILD_FILE_SEPARATOR') {|s| s unless s == "/"}
|
||||||
if fsep
|
if fsep
|
||||||
|
sep = ":/=#{fsep}"
|
||||||
fseprepl = proc {|s|
|
fseprepl = proc {|s|
|
||||||
s = s.gsub("/", fsep)
|
s = s.gsub("/", fsep)
|
||||||
s = s.gsub(/(\$\(\w+)(\))/) {$1+sep+$2}
|
s = s.gsub(/(\$\(\w+)(\))/) {$1+sep+$2}
|
||||||
s = s.gsub(/(\$\{\w+)(\})/) {$1+sep+$2}
|
s = s.gsub(/(\$\{\w+)(\})/) {$1+sep+$2}
|
||||||
}
|
}
|
||||||
sep = ":/=#{fsep}"
|
|
||||||
else
|
else
|
||||||
fseprepl = proc {|s| s}
|
fseprepl = proc {|s| s}
|
||||||
sep = ""
|
sep = ""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user