From cb6251ffd669c33047b8e90398e86ec7c8c30d83 Mon Sep 17 00:00:00 2001 From: Steve Huston Date: Mon, 2 Jan 2017 12:01:14 -0500 Subject: Riverace-2053: improve start/finish build logging --- ACE/include/makeinclude/rules.nested.GNU | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ACE/include/makeinclude/rules.nested.GNU b/ACE/include/makeinclude/rules.nested.GNU index 657e02c3f9b..cf7f0c1c4cb 100644 --- a/ACE/include/makeinclude/rules.nested.GNU +++ b/ACE/include/makeinclude/rules.nested.GNU @@ -31,11 +31,11 @@ endif %.subdir: % ifneq ($(timed),) - echo -n "START: $< " && date + @date=`date`; echo "START: $< $$date" endif cd $< && $(MAKE) -f $(SUBDIR_MAKEFILE) $(SUBDIR_TARGET) ifneq ($(timed),) - echo -n "FINISH: $< " && date + @date=`date`;echo "FINISH: $< $$date" endif # Build FOO.nested by calling MAKE again, this time with DIRS (with -- cgit v1.2.1