diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-02-10 03:58:50 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-02-10 03:58:50 +0000 |
commit | b23b5cfb21bbc171e037c5de9573b5d11303ef89 (patch) | |
tree | 11dc2b87df48839109f779daf145789b9c4f7446 | |
parent | 347d17966b7182d96d17eb62d1f1ed52e9352b8c (diff) | |
download | ruby-b23b5cfb21bbc171e037c5de9573b5d11303ef89.tar.gz ruby-b23b5cfb21bbc171e037c5de9573b5d11303ef89.tar.xz ruby-b23b5cfb21bbc171e037c5de9573b5d11303ef89.zip |
* lib/mkmf.rb (create_makefile): fix typo.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7941 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-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 b2ae7e501..a6f77e043 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -1080,7 +1080,7 @@ site-install-rb: install-rb rule = /^[$\w][^#]*:/ =~ line unless cont cont = /(?:^|[^\\])(?:\\\\)*\\$/ =~ line if rule - line.gsub!(%r"(?<=\s)(?!\.)(?=[^\s\/]+\.(?:#{(SRC_EXT + ['h']).join('|')})(?\s|\z))"o, '{.;$(VPATH)}') + line.gsub!(%r"(?<=\s)(?!\.)(?=[^\s\/]+\.(?:#{(SRC_EXT + ['h']).join('|')})(?:\s|\z))"o, '{.;$(VPATH)}') else line.sub!(/^(\.\w+)(\.\w+)(?=\s*:)/, '{.;$(VPATH)}\1{}\2') end |