mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* README.EXT: explain --vendor option for extconf.rb
* README.EXT.ja: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13808 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9435853daf
commit
fbc00c8772
3 changed files with 16 additions and 1 deletions
|
@ -1,9 +1,13 @@
|
|||
Sat Nov 3 22:29:35 2007 Tanaka Akira <akr@fsij.org>
|
||||
Sat Nov 3 22:41:05 2007 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* configure.in: --with-vendor-hdrdir implemented.
|
||||
|
||||
* lib/mkmf.rb: check --vendor argument.
|
||||
|
||||
* README.EXT: explain --vendor option for extconf.rb
|
||||
|
||||
* README.EXT.ja: ditto.
|
||||
|
||||
Sat Nov 3 20:30:48 2007 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* configure.in: --with-vendordir implemented.
|
||||
|
|
|
@ -662,6 +662,11 @@ Try generating the Makefile by:
|
|||
|
||||
ruby extconf.rb
|
||||
|
||||
If the library should be installed under vendor_ruby directory
|
||||
instead of site_ruby directory, use --vendor option as follows.
|
||||
|
||||
ruby extconf.rb --vendor
|
||||
|
||||
You don't need this step if you put the extension library under the ext
|
||||
directory of the ruby source tree. In that case, compilation of the
|
||||
interpreter will do this step for you.
|
||||
|
|
|
@ -757,6 +757,12 @@ Makefile
|
|||
|
||||
としてください.
|
||||
|
||||
site_ruby ディレクトリでなく、
|
||||
vendor_ruby ディレクトリにインストールする場合には
|
||||
以下のように --vendor オプションを加えてください.
|
||||
|
||||
ruby extconf.rb --vendor
|
||||
|
||||
ディレクトリをext以下に用意した場合にはRuby全体のmakeの時に
|
||||
自動的にMakefileが生成されますので,このステップは不要です.
|
||||
|
||||
|
|
Loading…
Reference in a new issue