mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
ext/extmk.rb(78) : The unnecessary error when installing by bccwin32 is controlled.
lib/mkmf.rb(773) : Also in the case of bccwin32, the path was added. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3008 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c87332937b
commit
ccfb459b7d
3 changed files with 11 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
Sun Oct 27 22:59:50 2002 KONISHI Hiromasa <konishih@fd6.so-net.ne.jp>
|
||||||
|
|
||||||
|
* ext/extmk.rb(78) : The unnecessary error when installing by bccwin32
|
||||||
|
is controlled.
|
||||||
|
|
||||||
|
* lib/mkmf.rb(773) : Also in the case of bccwin32, the path was added.
|
||||||
|
|
||||||
Sat Oct 26 10:11:47 2002 Akinori MUSHA <knu@iDaemons.org>
|
Sat Oct 26 10:11:47 2002 Akinori MUSHA <knu@iDaemons.org>
|
||||||
|
|
||||||
* node.h (nd_type): cast the value to int.
|
* node.h (nd_type): cast the value to int.
|
||||||
|
|
|
@ -75,6 +75,9 @@ def extmake(target)
|
||||||
else
|
else
|
||||||
open("./Makefile", "w") {|f|
|
open("./Makefile", "w") {|f|
|
||||||
f.print configuration($srcdir), makerules(nil), "install:\n"
|
f.print configuration($srcdir), makerules(nil), "install:\n"
|
||||||
|
if /bccwin32/ =~ RUBY_PLATFORM
|
||||||
|
f.print "\t@\n"
|
||||||
|
end
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
if $static
|
if $static
|
||||||
|
|
|
@ -770,7 +770,7 @@ DISTCLEANFILES = #{distcleanfiles.join(' ')}
|
||||||
mfile.printf "###\n"
|
mfile.printf "###\n"
|
||||||
while line = dfile.gets()
|
while line = dfile.gets()
|
||||||
line.gsub!(/\.o\b/, ".#{$OBJEXT}")
|
line.gsub!(/\.o\b/, ".#{$OBJEXT}")
|
||||||
line.gsub!(/(\s)([^\s\/]+\.[ch])/, '\1{$(srcdir)}\2') if $nmake
|
line.gsub!(/(\s)([^\s\/]+\.[ch])/, '\1{$(srcdir)}\2') if $nmake||$bccwin
|
||||||
line.gsub!(/\$\(hdrdir\)\/config.h/, $config_h) if $config_h
|
line.gsub!(/\$\(hdrdir\)\/config.h/, $config_h) if $config_h
|
||||||
mfile.print line
|
mfile.print line
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue