mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
4 changed files with 11 additions and 3 deletions
|
@ -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>
|
||||
|
||||
* lib/webrick/cookie.rb (WEBrick::Cookie.parse_set_cookies): new
|
||||
|
|
|
@ -155,7 +155,7 @@ def extmake(target)
|
|||
ok = yield(ok) if block_given?
|
||||
unless ok
|
||||
open(makefile, "w") do |f|
|
||||
f.print dummy_makefile(CONFIG["srcdir"])
|
||||
f.print *dummy_makefile(CONFIG["srcdir"])
|
||||
end
|
||||
return true
|
||||
end
|
||||
|
|
|
@ -1390,7 +1390,7 @@ site-install-rb: install-rb
|
|||
unless suffixes.empty?
|
||||
mfile.print ".SUFFIXES: .", suffixes.uniq.join(" ."), "\n\n"
|
||||
end
|
||||
mfile.print *depout
|
||||
mfile.print *depout.flatten
|
||||
else
|
||||
headers = %w[ruby.h defines.h]
|
||||
if RULE_SUBST
|
||||
|
|
|
@ -60,7 +60,7 @@ end
|
|||
#include <winver.h>
|
||||
#endif
|
||||
|
||||
#{icons || ''}
|
||||
#{icons ? icons.join : ''}
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION #{fversion}
|
||||
PRODUCTVERSION #{fversion}
|
||||
|
|
Loading…
Reference in a new issue