summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--ext/iconv/extconf.rb4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index f1fee7acdd..3d23d456ca 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Jan 14 13:30:52 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * ext/iconv/extconf.rb: wrapper iconv.rb is dependent on platform.
+
Wed Jan 14 09:32:02 2004 NAKAMURA Usaku <usa@ruby-lang.org>
* MANIFEST: add test/net/test_httpheader.rb. (commit miss?)
diff --git a/ext/iconv/extconf.rb b/ext/iconv/extconf.rb
index 8dfd562a40..36cd60ed15 100644
--- a/ext/iconv/extconf.rb
+++ b/ext/iconv/extconf.rb
@@ -24,14 +24,14 @@ test(iconv_t cd, char **inptr, size_t *inlen, char **outptr, size_t *outlen)
if conf
prefix = '$(srcdir)'
prefix = $nmake ? "{#{prefix}}" : "#{prefix}/"
- $INSTALLFILES = [["./iconv.rb", "$(RUBYLIBDIR)"]]
+ wrapper = "./iconv.rb"
+ $INSTALLFILES = [[wrapper, "$(RUBYARCHDIR)"]]
if String === conf
require 'uri'
scheme = URI.parse(conf).scheme
else
conf = prefix + "config.charset"
end
- wrapper = "iconv.rb"
$cleanfiles << wrapper
end
create_makefile("iconv")