summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)