1
0
Fork 0
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/trunk@5420 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2004-01-09 01:05:27 +00:00
parent 50fe8ab6aa
commit 6f69b2b00a
2 changed files with 8 additions and 4 deletions

View file

@ -1,3 +1,7 @@
Fri Jan 9 10:05:23 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>
* configure.in (RDOCTARGET): new macro. if you want to install
@ -6,7 +10,7 @@ Thu Jan 8 23:49:21 2004 WATANABE Hirofumi <eban@ruby-lang.org>
Thu Jan 8 21:17:43 2004 GOTOU Yuuzou <gotoyuzo@notwork.org>
* ext/openssl/ossl_pkey.c (ossl_pkey_to_der): removed; it returns
* ext/openssl/ossl_pkey.c (ossl_pkey_to_der): removed; it returns
public key only.
* ext/openssl/ossl_pkey_dh.c (ossl_dh_to_der): new function for

View file

@ -234,7 +234,7 @@ end
def libpathflag(libpath=$LIBPATH)
libpath.map{|x|
(x == "$(topdir)" ? LIBPATHFLAG : LIBPATHFLAG+RPATHFLAG) % %["#{x}"]
(x == "$(topdir)" ? LIBPATHFLAG : LIBPATHFLAG+RPATHFLAG) % %['#{x}']
}.join
end
@ -964,10 +964,10 @@ def init_mkmf(config = CONFIG)
end
$LOCAL_LIBS = ""
$cleanfiles = []
$distcleanfiles = []
dir_config("opt")
end