summaryrefslogtreecommitdiff
path: root/lib/mkmf.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-26 00:52:49 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-26 00:52:49 +0000
commitac8ef7a5c878b5d6871826841824c6bbf69be394 (patch)
treee6dd3106e1b46b72edca324c69856238bd70f0fa /lib/mkmf.rb
parentb4c805cc4447b0e34df9e3a767ceb31a87013de7 (diff)
* defines.h (flush_register_windows): use volatile only for gcc on
Solaris. [ruby-dev:21403] * lib/mkmf.rb (xsystem): use system directly to honor shell meta charaters. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4600 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/mkmf.rb')
-rw-r--r--lib/mkmf.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/mkmf.rb b/lib/mkmf.rb
index 8a3c7c9147..cadf81ee27 100644
--- a/lib/mkmf.rb
+++ b/lib/mkmf.rb
@@ -165,9 +165,8 @@ end
def xsystem command
Config.expand(command)
Logging::open do
- command = Shellwords.shellwords(command)
- puts command.quote.join(' ')
- system(*command)
+ puts command.quote
+ system(command)
end
end