1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

http11 :compile task will not 'nmake' under mswin64 (ruby1.9).

git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@698 19e92222-5c0b-0410-8929-a290d50e31e9
This commit is contained in:
luislavena 2007-10-19 01:37:35 +00:00
parent bc767b6e74
commit b4c1679c34

View file

@ -95,7 +95,7 @@ when /mswin/
file filename do
Dir.chdir("ext/http11") do
ruby "extconf.rb"
system(PLATFORM =~ /win32/ ? 'nmake' : 'make')
system(PLATFORM =~ /mswin/ ? 'nmake' : 'make')
end
move_extensions
end