mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* win32/Makefile.sub (config.status): use un.rb as cp instead of
cmd.exe's copy command. * lib/mkmf.rb (create_makefile): no longer need to convert path separator when copying file. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22621 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
dd43561fd6
commit
3540727af5
3 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,11 @@
|
|||
Wed Feb 25 15:05:35 2009 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* win32/Makefile.sub (config.status): use un.rb as cp instead of
|
||||
cmd.exe's copy command.
|
||||
|
||||
* lib/mkmf.rb (create_makefile): no longer need to convert path
|
||||
separator when copying file.
|
||||
|
||||
Wed Feb 25 12:27:59 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* string.c (rb_str_force_encoding): should clear coderange at changing
|
||||
|
|
|
@ -1712,7 +1712,7 @@ static: $(STATIC_LIB)#{$extout ? " install-rb" : ""}
|
|||
dest = "#{dir}/#{File.basename(f)}"
|
||||
mfile.print("install-rb#{sfx}: #{dest}\n")
|
||||
mfile.print("#{dest}: #{f} #{dir}\n\t$(#{$extout ? 'COPY' : 'INSTALL_DATA'}) ")
|
||||
mfile.print("#{fseprepl[f]} $(@D#{sep})\n")
|
||||
mfile.print("#{f} $(@D)\n")
|
||||
if defined?($installed_list) and !$extout
|
||||
mfile.print("\t@echo #{dest}>>$(INSTALLED_LIST)\n")
|
||||
end
|
||||
|
|
|
@ -584,7 +584,6 @@ s,@SET_MAKE@,MFLAGS = -$$(MAKEFLAGS),;t t
|
|||
s,@RM@,$$(COMSPEC) /C $$(top_srcdir:/=\)\win32\rm.bat,;t t
|
||||
s,@RMDIRS@,$$(COMSPEC) /C $$(top_srcdir:/=\)\win32\rmdirs.bat,;t t
|
||||
s,@RMALL@,$$(COMSPEC) /C rmdir /s /q,;t t
|
||||
s,@CP@,copy > nul,;t t
|
||||
s,@LIBOBJS@,$(LIBOBJS),;t t
|
||||
s,@ALLOCA@,$(ALLOCA),;t t
|
||||
s,@DEFAULT_KCODE@,$(DEFAULT_KCODE),;t t
|
||||
|
|
Loading…
Reference in a new issue