summaryrefslogtreecommitdiff
path: root/enc
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-08-18 00:57:48 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-08-18 00:57:48 +0000
commite6de05d7c45ae256195bc0648605d0017bc7ee76 (patch)
treee2d1daaaa3b25d04252c55783026fbe365b8d507 /enc
parentcedb0db802c3bde6864beedcf13da60b49810e21 (diff)
enc/depend: fix inplace-build condition
* enc/depend: fix inplace-build condition. enc.mk is generated with setting $srcdir to enc, but pwd is still top build direcory. [ruby-core:47236] [Bug #6888] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36725 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enc')
-rw-r--r--enc/depend2
1 files changed, 1 insertions, 1 deletions
diff --git a/enc/depend b/enc/depend
index 78b9370a02..a002af6948 100644
--- a/enc/depend
+++ b/enc/depend
@@ -1,4 +1,4 @@
-% inplace = File.identical?($srcdir, ".")
+% inplace = File.identical?($top_srcdir, ".")
% workdirs = %w"$(ENCSODIR) $(TRANSSODIR) enc enc/trans"
% CONFIG["WORKDIRS"] = workdirs.join(' ')
% enable_shared = CONFIG['ENABLE_SHARED'] == 'yes'