ruby-changes:6999
From: usa <ko1@a...>
Date: Tue, 12 Aug 2008 15:19:21 +0900 (JST)
Subject: [ruby-changes:6999] Ruby:r18517 (trunk): * enc/depend: (transvpath_prefix): prefix has no extension, so replace
usa 2008-08-12 15:19:00 +0900 (Tue, 12 Aug 2008) New Revision: 18517 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=18517 Log: * enc/depend: (transvpath_prefix): prefix has no extension, so replace %s with "". Modified files: trunk/ChangeLog trunk/enc/depend Index: ChangeLog =================================================================== --- ChangeLog (revision 18516) +++ ChangeLog (revision 18517) @@ -1,3 +1,8 @@ +Tue Aug 12 15:17:06 2008 NAKAMURA Usaku <usa@r...> + + * enc/depend: (transvpath_prefix): prefix has no extension, so replace + %s with "". + Tue Aug 12 15:03:43 2008 TAKAO Kouji <kouji@t...> * test/readline/test_readline.rb (TestReadline#test_safe_level_4): Index: enc/depend =================================================================== --- enc/depend (revision 18516) +++ enc/depend (revision 18517) @@ -28,7 +28,7 @@ % cleanobjs = Shellwords.shellwords(CONFIG["cleanobjs"] || "") % rule_subst = CONFIG["RULE_SUBST"] || "%s" % transvpath = rule_subst.dup.sub!(/\{[^{}]+\}/, '$(TRANSVPATH)/') || "enc/trans/%s" -% transvpath_prefix = rule_subst.dup.sub!(/\{[^{}]+\}/, '{$(TRANSVPATH)}') || "" +% transvpath_prefix = (rule_subst.dup.sub!(/\{[^{}]+\}/, '{$(TRANSVPATH)}') || "") % "" % if File::ALT_SEPARATOR % pathrep = proc {|path| path.gsub('/', File::ALT_SEPARATOR).gsub(/\$\(([@<?*]\w?|\w+)\)/, "$(\\1:/=\\#{File::ALT_SEPARATOR})")} % else -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/