summaryrefslogtreecommitdiffstats
path: root/enc/depend
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-12 06:19:00 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-12 06:19:00 +0000
commitb9af2293eb29f1ca3d64f18fab206db8ba8727b5 (patch)
treed8ca0b0d933c210df2d191538ea4f6cd05e48d5a /enc/depend
parent4935a89862ad36ddea012700145633023e3f3f76 (diff)
downloadruby-b9af2293eb29f1ca3d64f18fab206db8ba8727b5.tar.gz
ruby-b9af2293eb29f1ca3d64f18fab206db8ba8727b5.tar.xz
ruby-b9af2293eb29f1ca3d64f18fab206db8ba8727b5.zip
* enc/depend: (transvpath_prefix): prefix has no extension, so replace
%s with "". git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18517 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enc/depend')
-rw-r--r--enc/depend2
1 files changed, 1 insertions, 1 deletions
diff --git a/enc/depend b/enc/depend
index 35cf6939b..fd4423ebc 100644
--- a/enc/depend
+++ b/enc/depend
@@ -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