Skip to content

Commit 8cf578e

Browse files
committed
* instruby.rb: do not install shared libraries as man pages.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@4046 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 9aaf791 commit 8cf578e

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Wed Jul 9 16:12:13 2003 WATANABE Hirofumi <eban@ruby-lang.org>
2+
3+
* instruby.rb: do not install shared libraries as man pages.
4+
15
Sat Jun 28 14:20:54 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
26

37
* ext/tcltklib/extconf.rb (find_tcl, find_tk): return true if

instruby.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
if CONFIG["LIBRUBY"] != CONFIG["LIBRUBY_A"]
5050
for lib in [CONFIG["LIBRUBY"]]
5151
if File.exist? lib
52-
File.install lib, libdir, 0555, true
52+
File.install lib, libdir, 0755, true
5353
end
5454
end
5555
end
@@ -136,6 +136,8 @@
136136
File.install wdir+'/'+CONFIG['LIBRUBY_A'], archlibdir, 0644, true
137137

138138
Dir.glob("*.[1-9]") do |mdoc|
139+
next unless open(mdoc){|fh| fh.read(1) == '.'}
140+
139141
section = mdoc[-1,1]
140142

141143
mandestdir = mandir + section

0 commit comments

Comments
 (0)