mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/mkmf.rb (libpathflag): use single quotes. [ruby-dev:22440]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@5420 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
738d80a805
commit
99cb7b0c19
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Fri Jan 9 10:05:14 2004 Siena. <siena@faculty.chiba-u.jp>
|
||||||
|
|
||||||
|
* lib/mkmf.rb (libpathflag): use single quotes. [ruby-dev:22440]
|
||||||
|
|
||||||
Thu Jan 8 23:49:21 2004 WATANABE Hirofumi <eban@ruby-lang.org>
|
Thu Jan 8 23:49:21 2004 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||||
|
|
||||||
* configure.in (RDOCTARGET): new macro. if you want to install
|
* configure.in (RDOCTARGET): new macro. if you want to install
|
||||||
|
|
|
@ -234,7 +234,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}']
|
||||||
}.join
|
}.join
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue