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 | 88855f11e3287db650abba98c592d96fa551a5b7 (patch) | |
| tree | f0e2801fc3b3b90eee99fa1c578488636fae06ef /lib | |
| parent | dba3de4a5b332768e086b960f15134170dc04714 (diff) | |
| download | ruby-88855f11e3287db650abba98c592d96fa551a5b7.tar.gz ruby-88855f11e3287db650abba98c592d96fa551a5b7.tar.xz ruby-88855f11e3287db650abba98c592d96fa551a5b7.zip | |
* lib/mkmf.rb (configuration): shouldn't output hdrdir twice.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8301 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
| -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 54f381279..ecdb54d30 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 << %{ |
