diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-06-26 03:43:26 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-06-26 03:43:26 +0000 |
| commit | f63da9edbe3c8c7805e050a15ab0948f8772a544 (patch) | |
| tree | 8b12c8e1e37ac6fa34c02daa58956e5826f7d347 | |
| parent | 23ca07f00b1b87c7bfaa6cfc37265422a81ae0f3 (diff) | |
| download | ruby-f63da9edbe3c8c7805e050a15ab0948f8772a544.tar.gz ruby-f63da9edbe3c8c7805e050a15ab0948f8772a544.tar.xz ruby-f63da9edbe3c8c7805e050a15ab0948f8772a544.zip | |
* lib/mkmf.rb (libpathflag): should not quote here.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6526 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | lib/mkmf.rb | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -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 1051a9a92..490836238 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) |
