summaryrefslogtreecommitdiff
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
commit86837c9bf376fce24f394fd8859e4987305cbc8f (patch)
tree8b12c8e1e37ac6fa34c02daa58956e5826f7d347
parentb70ee175ac7c98e38e803620982e2fb9b0b35ed9 (diff)
* lib/mkmf.rb (libpathflag): should not quote here.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@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 a65e8bb448..7b8c719c39 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,8 +3,8 @@ Sat Jun 26 11:07:30 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, dir_config): quote directory names if
- necessary. [ruby-talk:104505]
+ * lib/mkmf.rb (dir_config): quote directory names if necessary.
+ [ruby-talk:104505]
Fri Jun 25 15:33:19 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
diff --git a/lib/mkmf.rb b/lib/mkmf.rb
index 1051a9a929..490836238a 100644
--- a/lib/mkmf.rb
+++ b/lib/mkmf.rb
@@ -251,7 +251,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)