diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-07-15 14:08:20 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-07-15 14:08:20 +0000 |
commit | 2ace43ba57c30781a59c554eb0e188f9c76acbe8 (patch) | |
tree | fce172c5b86197a459f5e778c18ba74dd4ea2d5c /enc | |
parent | 20c4461d86487447e0c8208514ff90835104b89c (diff) | |
download | ruby-2ace43ba57c30781a59c554eb0e188f9c76acbe8.tar.gz |
common.mk: directory timestamps
* common.mk, enc/Makefile.in: moved timestamp files for
directories under the specific directory, to get rid of match
with files under the source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55693 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enc')
-rw-r--r-- | enc/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/enc/Makefile.in b/enc/Makefile.in index 73b1e70941..8385236494 100644 --- a/enc/Makefile.in +++ b/enc/Makefile.in @@ -20,8 +20,9 @@ TRANSSODIR = $(ENCSODIR)/trans DLEXT = @DLEXT@ OBJEXT = @OBJEXT@ LIBEXT = @LIBEXT@ -ENC_TRANS_D = ./enc/trans/.time -ENC_TRANS_SO_D = ./enc/trans/.so.time +TIMESTAMPDIR = $(EXTOUT)/.timestamp +ENC_TRANS_D = $(TIMESTAMPDIR)/.enc-trans.time +ENC_TRANS_SO_D = $(TIMESTAMPDIR)/.enc-trans.so.time BUILTIN_ENCS = enc/ascii.c enc/us_ascii.c\ enc/unicode.c enc/utf_8.c |