diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-04-11 06:26:49 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-04-11 06:26:49 +0000 |
| commit | 04021e04d4bc9d7069f5a23286f6c8bd58104e2c (patch) | |
| tree | ef063473ae4b7efd93493e4db43b33980720ff6d /lib/mkmf.rb | |
| parent | fc35387e6fa6b0ab09509235eab8ac7c3f523a55 (diff) | |
| download | ruby-04021e04d4bc9d7069f5a23286f6c8bd58104e2c.tar.gz ruby-04021e04d4bc9d7069f5a23286f6c8bd58104e2c.tar.xz ruby-04021e04d4bc9d7069f5a23286f6c8bd58104e2c.zip | |
* lib/mkmf.rb (configuration): shouldn't output hdrdir twice.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8301 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/mkmf.rb')
| -rw-r--r-- | lib/mkmf.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mkmf.rb b/lib/mkmf.rb index a9561cc7a..07017597c 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -862,7 +862,7 @@ VPATH = #{vpath.join(CONFIG['PATH_SEPARATOR'])} end CONFIG.each do |key, var| next if /^abs_/ =~ key - next unless /^(?:src|top|(.*))dir$/ =~ key and $1 + next unless /^(?:src|top|hdr|(.*))dir$/ =~ key and $1 mk << "#{key} = #{with_destdir(var.sub(drive, ''))}\n" end mk << %{ |
