diff options
author | Daniel Dunbar <daniel@zuster.org> | 2012-10-17 18:21:21 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2012-10-17 18:21:21 +0000 |
commit | b02dcec79ee25c965dafe63ee98c9225ec30f6a1 (patch) | |
tree | 72e568d30467a0790a7b00c160f282f3b95da842 | |
parent | a10c09804d92db4f41fd0df29ea3c0346e297c59 (diff) | |
download | bcm5719-llvm-b02dcec79ee25c965dafe63ee98c9225ec30f6a1.tar.gz bcm5719-llvm-b02dcec79ee25c965dafe63ee98c9225ec30f6a1.zip |
build/make: There is no need to put timestamps into .dir files, and it just
makes trees less comparable.
llvm-svn: 166111
-rw-r--r-- | compiler-rt/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/Makefile b/compiler-rt/Makefile index a96c692b308..aea6b887866 100644 --- a/compiler-rt/Makefile +++ b/compiler-rt/Makefile @@ -92,7 +92,7 @@ test: %/.dir: $(Summary) " MKDIR: $*" $(Verb) $(MKDIR) $* > /dev/null - $(Verb) $(DATE) > $@ + $(Verb) echo 'Created.' > $@ # Remove directories %/.remove: |