1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/extmk.rb.in: replace mkdir with mkpath to compile racc/cparse.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2261 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
aamine 2002-03-22 07:39:02 +00:00
parent 2c8151010e
commit f534b398a5
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Fri Mar 22 16:46:54 2002 Minero Aoki <aamine@loveruby.net>
* ext/extmk.rb.in: replace mkdir with mkpath to compile racc/cparse.
Fri Mar 22 16:22:55 2002 Yukihiro Matsumoto <matz@ruby-lang.org>
* the VMS support patch submitted by Akiyoshi, Masamichi

View file

@ -40,6 +40,7 @@ $:.replace [$topdir, $top_srcdir, $top_srcdir+"/lib", "."]
require 'rbconfig.rb'
require 'find'
require 'ftools'
def rm_f(*files)
targets = []
@ -623,7 +624,7 @@ def extmake(target)
begin
dir = Dir.pwd
Dir.mkdir target unless File.directory?(target)
File.mkpath target unless File.directory?(target)
Dir.chdir target
$target = target
$mdir = target