* ext/extmk.rb (system): use Shellwords.join.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35726 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-05-20 14:00:13 +00:00
Родитель ea0c3a8832
Коммит 2dc01a5f2f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -56,7 +56,7 @@ def system(*args)
if args.size == 1
puts args
else
puts args.map{|arg| Shellwords.escape(arg)}.join(' ')
puts Shellwords.join(args)
end
end
super