From 86077e1e49dfa4b55541153848c041686a622d60 Mon Sep 17 00:00:00 2001 From: eban Date: Sun, 9 Mar 2003 08:17:02 +0000 Subject: * lib/fileutils.rb (mkdir, mkdir_p): set mode to 0755. * Makefile.in (fake.rb): set ALT_SEPARATOR to the default value. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3568 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- Makefile.in | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'Makefile.in') diff --git a/Makefile.in b/Makefile.in index 825a5f472..5bd47b5c9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -178,7 +178,13 @@ fake.rb: miniruby$(EXEEXT) Makefile remove_const :RUBY_VERSION; \ RUBY_PLATFORM = "@arch@"; \ RUBY_VERSION = "@MAJOR@.@MINOR@.@TEENY@"; \ - end \ + end; \ + if RUBY_PLATFORM =~ /mswin|bccwin|mingw/; \ + class File; \ + remove_const :ALT_SEPARATOR; \ + ALT_SEPARATOR = "\\"; \ + end; \ + end; \ ' > $@ Makefile: $(srcdir)/Makefile.in -- cgit