* lib/mkmf.rb (libpathflag): should not quote here.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6526 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4cf1e8654d
commit
1f16f35849
@ -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,
|
* configure.in (aix): -b must come at the start of the command line,
|
||||||
and -e must not appear while testing libraries. [ruby-talk:104501]
|
and -e must not appear while testing libraries. [ruby-talk:104501]
|
||||||
|
|
||||||
* lib/mkmf.rb (libpathflag, find_header, dir_config): quote directory
|
* lib/mkmf.rb (find_header, dir_config): quote directory names if
|
||||||
names if necessary. [ruby-talk:104505]
|
necessary. [ruby-talk:104505]
|
||||||
|
|
||||||
Sat Jun 26 00:13:08 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Sat Jun 26 00:13:08 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
@ -252,7 +252,7 @@ end
|
|||||||
def libpathflag(libpath=$LIBPATH)
|
def libpathflag(libpath=$LIBPATH)
|
||||||
libpath.map{|x|
|
libpath.map{|x|
|
||||||
(x == "$(topdir)" ? LIBPATHFLAG : LIBPATHFLAG+RPATHFLAG) % x
|
(x == "$(topdir)" ? LIBPATHFLAG : LIBPATHFLAG+RPATHFLAG) % x
|
||||||
}.quote.join
|
}.join
|
||||||
end
|
end
|
||||||
|
|
||||||
def try_link0(src, opt="", &b)
|
def try_link0(src, opt="", &b)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user