summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-05-17 20:39:01 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-05-17 20:39:01 +0000
commite41eccf1195453120e28a4294380fb66a7dd8676 (patch)
treee45d43e89dc87c68e1bafea17d581ade2e374b5a /lib
parent3934289901465388b16932a97e2ea21b7028120a (diff)
* lib/mkmf.rb (xsystem): make a temporary fix to get $(...) macros
properly expanded on a command execution. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1434 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/mkmf.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/mkmf.rb b/lib/mkmf.rb
index cd1620ee9a..e9c78dace7 100644
--- a/lib/mkmf.rb
+++ b/lib/mkmf.rb
@@ -62,6 +62,7 @@ end
$orgerr = $stderr.dup
$orgout = $stdout.dup
def xsystem command
+ Config.expand(command)
if $DEBUG
print command, "\n"
return system(command)