summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-05-02 09:31:29 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-05-02 09:31:29 +0000
commit61a81c837ff779610d4071040d65533474f84969 (patch)
tree52d8d2b235c649cba8807f5350dee56342e43a68 /ext
parent40e566aef9e5d735bb638d836add209c2ca8ea8f (diff)
downloadruby-61a81c837ff779610d4071040d65533474f84969.tar.gz
ruby-61a81c837ff779610d4071040d65533474f84969.tar.xz
ruby-61a81c837ff779610d4071040d65533474f84969.zip
* ext/extmk.rb.in, lib/mkmf.rb: use 'do...end' instead of '{}' for Borland make.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2424 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/extmk.rb.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/extmk.rb.in b/ext/extmk.rb.in
index 9f587649a..55dee2478 100644
--- a/ext/extmk.rb.in
+++ b/ext/extmk.rb.in
@@ -470,7 +470,7 @@ TARGET = #{target}
DLLIB = $(TARGET).#{$static ? $LIBEXT : "@DLEXT@"}
RUBY = #{ruby_interpreter} -I$(topdir) -I$(hdrdir)/lib
-RM = $(RUBY) -rftools -e "File::rm_f(*ARGV.map{|x|Dir[x]}.flatten.uniq)"
+RM = $(RUBY) -rftools -e "File::rm_f(*ARGV.map do|x|Dir[x]end.flatten.uniq)"
EXEEXT = @EXEEXT@