summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-09 01:05:27 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-09 01:05:27 +0000
commit867ec3a778384176402975dbc1c51599ebc2ed77 (patch)
tree5b97767d5523c54d042e423e9f2853888dcbc2dd
parenta1c0e839460d9f8495f21b4e627ed98fbe21ee8e (diff)
downloadruby-867ec3a778384176402975dbc1c51599ebc2ed77.tar.gz
ruby-867ec3a778384176402975dbc1c51599ebc2ed77.tar.xz
ruby-867ec3a778384176402975dbc1c51599ebc2ed77.zip
* lib/mkmf.rb (libpathflag): use single quotes. [ruby-dev:22440]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5420 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--lib/mkmf.rb6
2 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 6d436f940..551f82545 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/lib/mkmf.rb b/lib/mkmf.rb
index 94269cba3..17579ec01 100644
--- a/lib/mkmf.rb
+++ b/lib/mkmf.rb
@@ -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