diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-07-15 21:26:02 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-07-15 21:26:02 +0000 |
commit | d54856c1d4c7b23c0fd508faf37dbb292f575805 (patch) | |
tree | 58f34b9c413d9fe60741b7eec03da04e1b72ea5b /enc/Makefile.in | |
parent | b2275294aafd3b239582f00990ba5d1306a75213 (diff) | |
download | ruby-d54856c1d4c7b23c0fd508faf37dbb292f575805.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@55696 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enc/Makefile.in')
-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 |