diff options
author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-05-17 20:23:08 +0000 |
---|---|---|
committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-05-17 20:23:08 +0000 |
commit | 4cd345c3c20c7d3d9d7f40c9b802a869de604a9f (patch) | |
tree | d83d7f21a3f0294e370bfa63f0cd448851303da8 /lib | |
parent | 8ae4d64c1a1987c3bc5bdefbbad047df0a7fa24c (diff) | |
download | ruby-4cd345c3c20c7d3d9d7f40c9b802a869de604a9f.tar.gz ruby-4cd345c3c20c7d3d9d7f40c9b802a869de604a9f.tar.xz ruby-4cd345c3c20c7d3d9d7f40c9b802a869de604a9f.zip |
* lib/mkmf.rb (xsystem): make a temporary fix to get $(...) macros
properly expanded on a command execution.
* ext/extmk.rb.in (xsystem): ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1432 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mkmf.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/mkmf.rb b/lib/mkmf.rb index cd1620ee9..e9c78dace 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) |