summaryrefslogtreecommitdiff
path: root/lib/mkmf.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-01-19 19:14:22 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-01-19 19:14:22 +0000
commit971d5f8480853b036d40ab9befdb78253c35d195 (patch)
tree80862f1e4cd4897d04981ce287a916bff40e5b3a /lib/mkmf.rb
parent9e1339a68f606f7c5ab50aac72c37f0d7dd69aa6 (diff)
* lib/mkmf.rb (egrep_cpp): use inspect to show options.
* lib/mkmf.rb (dir_config): prior configured directories to defaults. * lib/mkmf.rb (dir_config): extract first word to determin make command type. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3361 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/mkmf.rb')
-rw-r--r--lib/mkmf.rb13
1 files changed, 8 insertions, 5 deletions
diff --git a/lib/mkmf.rb b/lib/mkmf.rb
index 0be7b73279..8479da5dff 100644
--- a/lib/mkmf.rb
+++ b/lib/mkmf.rb
@@ -279,7 +279,7 @@ def egrep_cpp(pat, src, opt="")
create_tmpsrc(src)
xpopen(cpp_command('', opt)) do |f|
if Regexp === pat
- puts(" ruby -ne 'print if /#{pat.source}/'")
+ puts(" ruby -ne 'print if #{pat.inspect}'")
f.grep(pat) {|l|
puts "#{f.lineno}: #{l}"
return true
@@ -513,11 +513,13 @@ def dir_config(target, idefault=nil, ldefault=nil)
if idir
idircflag = "-I" + idir
- $CPPFLAGS += " " + idircflag unless $CPPFLAGS.split.include?(idircflag)
+ unless Shellwords.shellwords($CPPFLAGS).include?(idircflag)
+ $CPPFLAGS = idircflag + " " + $CPPFLAGS
+ end
end
if ldir
- $LIBPATH << ldir unless $LIBPATH.include?(ldir)
+ $LIBPATH.unshift(ldir) unless $LIBPATH.include?(ldir)
end
[idir, ldir]
@@ -814,12 +816,13 @@ init_mkmf
dir_config("opt")
$make = with_config("make-prog", ENV["MAKE"] || "make")
+make, = Shellwords.shellwords($make)
$nmake = nil
case
when $mswin
- $nmake = ?m if /nmake/i =~ $make
+ $nmake = ?m if /nmake/i =~ make
when $bccwin
- $nmake = ?b if /Borland/i =~ `#$make -h`
+ $nmake = ?b if /Borland/i =~ `#{make} -h`
end
Config::CONFIG["srcdir"] = CONFIG["srcdir"] =