* instruby.rb: do not install shared libraries as man pages.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4044 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3d43a19c74
commit
039fd6a8f9
@ -1,3 +1,7 @@
|
|||||||
|
Wed Jul 9 15:38:28 2003 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||||
|
|
||||||
|
* instruby.rb: do not install shared libraries as man pages.
|
||||||
|
|
||||||
Wed Jul 09 11:09:57 2003 NAKAMURA Usaku <usa@ruby-lang.org>
|
Wed Jul 09 11:09:57 2003 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
* re.c (match_entry): add prototype to avoid VC++ warnings.
|
* re.c (match_entry): add prototype to avoid VC++ warnings.
|
||||||
|
@ -100,7 +100,7 @@ if rubyw_install_name and !rubyw_install_name.empty?
|
|||||||
install rubyw_install_name+exeext, bindir, :mode => 0755
|
install rubyw_install_name+exeext, bindir, :mode => 0755
|
||||||
end
|
end
|
||||||
install dll, bindir, :mode => 0755 if enable_shared and dll != lib
|
install dll, bindir, :mode => 0755 if enable_shared and dll != lib
|
||||||
install lib, libdir, :mode => 0555 unless lib == arc
|
install lib, libdir, :mode => 0755 unless lib == arc
|
||||||
install arc, libdir, :mode => 0644
|
install arc, libdir, :mode => 0644
|
||||||
install "config.h", archlibdir, :mode => 0644
|
install "config.h", archlibdir, :mode => 0644
|
||||||
install "rbconfig.rb", archlibdir, :mode => 0644
|
install "rbconfig.rb", archlibdir, :mode => 0644
|
||||||
@ -179,6 +179,8 @@ if RUBY_PLATFORM =~ /mswin32|mingw|bccwin32/
|
|||||||
end
|
end
|
||||||
|
|
||||||
Dir.glob("*.[1-9]") do |mdoc|
|
Dir.glob("*.[1-9]") do |mdoc|
|
||||||
|
next unless File.read(mdoc)[0] == ?.
|
||||||
|
|
||||||
section = mdoc[-1,1]
|
section = mdoc[-1,1]
|
||||||
|
|
||||||
destdir = mandir + section
|
destdir = mandir + section
|
||||||
|
Loading…
x
Reference in New Issue
Block a user