[前][次][番号順一覧][スレッド一覧]

ruby-changes:11030

From: usa <ko1@a...>
Date: Wed, 25 Feb 2009 15:07:24 +0900 (JST)
Subject: [ruby-changes:11030] Ruby:r22621 (trunk): * win32/Makefile.sub (config.status): use un.rb as cp instead of

usa	2009-02-25 15:07:10 +0900 (Wed, 25 Feb 2009)

  New Revision: 22621

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=22621

  Log:
    * 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.

  Modified files:
    trunk/ChangeLog
    trunk/lib/mkmf.rb
    trunk/win32/Makefile.sub

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 22620)
+++ ChangeLog	(revision 22621)
@@ -1,3 +1,11 @@
+Wed Feb 25 15:05:35 2009  NAKAMURA Usaku  <usa@r...>
+
+	* 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@r...>
 
 	* string.c (rb_str_force_encoding): should clear coderange at changing
Index: lib/mkmf.rb
===================================================================
--- lib/mkmf.rb	(revision 22620)
+++ lib/mkmf.rb	(revision 22621)
@@ -1712,7 +1712,7 @@
 	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
Index: win32/Makefile.sub
===================================================================
--- win32/Makefile.sub	(revision 22620)
+++ win32/Makefile.sub	(revision 22621)
@@ -584,7 +584,6 @@
 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

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]