diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-14 04:31:11 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-14 04:31:11 +0000 |
| commit | cb535720892ad7660589b1a703d7bc31f8223ad2 (patch) | |
| tree | 9b75e3010b43c9a9b8edd0111fef955742981839 | |
| parent | 450ba359be716249f3647c59c2675e8cc01ab07b (diff) | |
* ext/iconv/extconf.rb: wrapper iconv.rb is dependent on platform.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5462 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 10 | ||||
| -rw-r--r-- | ext/iconv/extconf.rb | 4 |
2 files changed, 9 insertions, 5 deletions
@@ -1,15 +1,19 @@ +Wed Jan 14 13:31:06 2004 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * ext/iconv/extconf.rb: wrapper iconv.rb is dependent on platform. + Tue Jan 13 18:54:28 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp> * lib/logger.rb(Logger#msg2str): no special treatment for the object - which responds to :to_str. commited at 2004-01-11T21:46:27 by + which responds to :to_str. commited at 2004-01-11T21:46:27 by gsinclair. * lib/logger.rb(LogDevice#initialize): remove type checking if the - given object is a String. Kernel.open handles it correctly. + given object is a String. Kernel.open handles it correctly. commited at 2004-01-11T21:46:27 by gsinclair. * test/logger/test_logger.rb: follow above change (ArgumentError -> - TypeError.) follow above commit. + TypeError.) follow above commit. Tue Jan 13 14:27:13 2004 Kazuhiro NISHIYAMA <zn@mbf.nifty.com> diff --git a/ext/iconv/extconf.rb b/ext/iconv/extconf.rb index 8dfd562a4..36cd60ed1 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") |
