[llvm-commits] [compiler-rt] r166111 - /compiler-rt/trunk/Makefile

Daniel Dunbar daniel at zuster.org
Wed Oct 17 11:21:21 PDT 2012


Author: ddunbar
Date: Wed Oct 17 13:21:21 2012
New Revision: 166111

URL: http://llvm.org/viewvc/llvm-project?rev=166111&view=rev
Log:
build/make: There is no need to put timestamps into .dir files, and it just
makes trees less comparable.

Modified:
    compiler-rt/trunk/Makefile

Modified: compiler-rt/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/Makefile?rev=166111&r1=166110&r2=166111&view=diff
==============================================================================
--- compiler-rt/trunk/Makefile (original)
+++ compiler-rt/trunk/Makefile Wed Oct 17 13:21:21 2012
@@ -92,7 +92,7 @@
 %/.dir:
 	$(Summary) "  MKDIR:     $*"
 	$(Verb) $(MKDIR) $* > /dev/null
-	$(Verb) $(DATE) > $@
+	$(Verb) echo 'Created.' > $@
 
 # Remove directories
 %/.remove:





More information about the llvm-commits mailing list