* ext/extmk.rb (extmake): follow Array#to_s.
* lib/mkmf.rb (create_makefile): ditto. * win32/resource.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10889 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ec847fad4e
commit
3d1b573946
@ -1,3 +1,11 @@
|
|||||||
|
Fri Sep 8 16:36:27 2006 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
|
* ext/extmk.rb (extmake): follow Array#to_s.
|
||||||
|
|
||||||
|
* lib/mkmf.rb (create_makefile): ditto.
|
||||||
|
|
||||||
|
* win32/resource.rb: ditto.
|
||||||
|
|
||||||
Fri Sep 8 10:00:12 2006 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
Fri Sep 8 10:00:12 2006 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
||||||
|
|
||||||
* lib/webrick/cookie.rb (WEBrick::Cookie.parse_set_cookies): new
|
* lib/webrick/cookie.rb (WEBrick::Cookie.parse_set_cookies): new
|
||||||
|
@ -155,7 +155,7 @@ def extmake(target)
|
|||||||
ok = yield(ok) if block_given?
|
ok = yield(ok) if block_given?
|
||||||
unless ok
|
unless ok
|
||||||
open(makefile, "w") do |f|
|
open(makefile, "w") do |f|
|
||||||
f.print dummy_makefile(CONFIG["srcdir"])
|
f.print *dummy_makefile(CONFIG["srcdir"])
|
||||||
end
|
end
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
@ -1390,7 +1390,7 @@ site-install-rb: install-rb
|
|||||||
unless suffixes.empty?
|
unless suffixes.empty?
|
||||||
mfile.print ".SUFFIXES: .", suffixes.uniq.join(" ."), "\n\n"
|
mfile.print ".SUFFIXES: .", suffixes.uniq.join(" ."), "\n\n"
|
||||||
end
|
end
|
||||||
mfile.print *depout
|
mfile.print *depout.flatten
|
||||||
else
|
else
|
||||||
headers = %w[ruby.h defines.h]
|
headers = %w[ruby.h defines.h]
|
||||||
if RULE_SUBST
|
if RULE_SUBST
|
||||||
|
@ -60,7 +60,7 @@ end
|
|||||||
#include <winver.h>
|
#include <winver.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#{icons || ''}
|
#{icons ? icons.join : ''}
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION #{fversion}
|
FILEVERSION #{fversion}
|
||||||
PRODUCTVERSION #{fversion}
|
PRODUCTVERSION #{fversion}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user