summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-06-26 03:43:26 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-06-26 03:43:26 +0000
commit7b4accf865a9130cb1239eea480e4bfe8eedeb0a (patch)
tree5e59abbff8c3086e6bb9773731257c5ce3f1d748
parent11ab1ee8ce83970f6c375fed025daf76e37e6cd1 (diff)
downloadruby-7b4accf865a9130cb1239eea480e4bfe8eedeb0a.tar.gz
ruby-7b4accf865a9130cb1239eea480e4bfe8eedeb0a.tar.xz
ruby-7b4accf865a9130cb1239eea480e4bfe8eedeb0a.zip
* lib/mkmf.rb (libpathflag): should not quote here.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6526 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--lib/mkmf.rb2
2 files changed, 3 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index a0fba361d..39d7fc4f4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,8 +3,8 @@ Sat Jun 26 11:07:20 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
* configure.in (aix): -b must come at the start of the command line,
and -e must not appear while testing libraries. [ruby-talk:104501]
- * lib/mkmf.rb (libpathflag, find_header, dir_config): quote directory
- names if necessary. [ruby-talk:104505]
+ * lib/mkmf.rb (find_header, dir_config): quote directory names if
+ necessary. [ruby-talk:104505]
Sat Jun 26 00:13:08 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
diff --git a/lib/mkmf.rb b/lib/mkmf.rb
index f132bf31b..f02a006f1 100644
--- a/lib/mkmf.rb
+++ b/lib/mkmf.rb
@@ -252,7 +252,7 @@ end
def libpathflag(libpath=$LIBPATH)
libpath.map{|x|
(x == "$(topdir)" ? LIBPATHFLAG : LIBPATHFLAG+RPATHFLAG) % x
- }.quote.join
+ }.join
end
def try_link0(src, opt="", &b)