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

ruby-changes:16887

From: naruse <ko1@a...>
Date: Fri, 6 Aug 2010 17:44:49 +0900 (JST)
Subject: [ruby-changes:16887] Ruby:r28883 (trunk): * enc/depend: add space at the begginig of @ignore_error.

naruse	2010-08-06 17:44:33 +0900 (Fri, 06 Aug 2010)

  New Revision: 28883

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

  Log:
    * enc/depend: add space at the begginig of @ignore_error.
    
    * lib/mkmf.rb: ditto.

  Modified files:
    trunk/ChangeLog
    trunk/enc/depend
    trunk/lib/mkmf.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 28882)
+++ ChangeLog	(revision 28883)
@@ -1,3 +1,9 @@
+Fri Aug  6 17:42:12 2010  NARUSE, Yui  <naruse@r...>
+
+	* enc/depend: add space at the begginig of @ignore_error.
+
+	* lib/mkmf.rb: ditto.
+
 Fri Aug  6 17:38:33 2010  NARUSE, Yui  <naruse@r...>
 
 	* common.mk (clean): add  prelude.c, config.log, and rbconfig.rb.
Index: enc/depend
===================================================================
--- enc/depend	(revision 28882)
+++ enc/depend	(revision 28883)
@@ -132,7 +132,7 @@
 % %w[$(ENCSOS) $(ENCOBJS) $(ENCCLEANOBJS) $(ENCCLEANLIBS) $(TRANSSOS) $(TRANSOBJS) $(TRANSCLEANOBJS) $(TRANSCLEANLIBS)].each do |clean|
 	@$(RM) <%=pathrep[clean]%>
 % end
-% @ignore_error = $nmake ? '' : '2> /dev/null || true'
+% @ignore_error = $nmake ? '' : ' 2> /dev/null || true'
 % %w[$(TRANSSODIR) $(ENCSODIR)].each do|dir|
 	@-$(RMDIR) <%=pathrep[dir]%><%=@ignore_error%>
 % end
Index: lib/mkmf.rb
===================================================================
--- lib/mkmf.rb	(revision 28882)
+++ lib/mkmf.rb	(revision 28883)
@@ -1813,7 +1813,7 @@
   mfile.print "install: install-so install-rb\n\n"
   sodir = (dir = "$(RUBYARCHDIR)").dup
   mfile.print("install-so: ")
-  @ignore_error = $nmake ? '' : '2> /dev/null || true'
+  @ignore_error = $nmake ? '' : ' 2> /dev/null || true'
   if target
     f = "$(DLLIB)"
     dest = "#{dir}/#{f}"

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

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