Note, ENABLE_TIMESTAMPS is either 1 or 0 in Makefile.config.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256138
91177308-0d34-0410-b5e6-
96231b3b80d8
@$(ECHOPATH) s=@HAVE_LIBZ@=$(HAVE_LIBZ)=g >> lit.tmp
@$(ECHOPATH) s=@HAVE_DIA_SDK@=0=g >> lit.tmp
@$(ECHOPATH) s=@ENABLE_EXAMPLES@=$(BUILD_EXAMPLES)=g >> lit.tmp
+ @$(ECHOPATH) s=@ENABLE_TIMESTAMPS@=$(ENABLE_TIMESTAMPS)=g >> lit.tmp
@sed -f lit.tmp $(PROJ_SRC_DIR)/lit.site.cfg.in > $@
@-rm -f lit.tmp
config.available_features.add('debug_frame')
# Check if we are embedding timestamps.
-if config.enable_timestamps:
+if config.enable_timestamps == '1':
config.available_features.add('timestamps')
# Check if we should use gmalloc.