summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-03-09 08:17:02 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-03-09 08:17:02 +0000
commitbf115a5e417184eef6601120df974c9b4dbe104e (patch)
tree22f5fd9e51368d8beab8c251e1bdbb1acec9f7b2 /Makefile.in
parent2de2ab3e000c46a8468e2845530f3330dff98b27 (diff)
* lib/fileutils.rb (mkdir, mkdir_p): set mode to 0755.
* Makefile.in (fake.rb): set ALT_SEPARATOR to the default value. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3568 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 825a5f4729..5bd47b5c9c 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