summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2016-11-03 15:47:09 -0400
committerGitHub <noreply@github.com>2016-11-03 15:47:09 -0400
commitcb5af49fcab8683862884eab9fe30a3962de647b (patch)
treecd90d7d0bb617f66cd4e30d350a6a8e08d8de7f8
parent8290a168bfb83e870c66cc6d49745224708081f6 (diff)
parent21cf22839b2d284d7658fd83f98c463fc08176e2 (diff)
downloadATCD-cb5af49fcab8683862884eab9fe30a3962de647b.tar.gz
Merge pull request #327 from DOCGroup/riverace-case2046
Fix closing parens and whitespace
-rw-r--r--ACE/include/makeinclude/rules.nested.GNU12
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/include/makeinclude/rules.nested.GNU b/ACE/include/makeinclude/rules.nested.GNU
index d4c58d01ed2..657e02c3f9b 100644
--- a/ACE/include/makeinclude/rules.nested.GNU
+++ b/ACE/include/makeinclude/rules.nested.GNU
@@ -30,13 +30,13 @@ endif
# Triggered by the $(TARGETS_NESTED) target, below.
%.subdir: %
- ifneq ($(timed,))
- echo -n "START: $< " && date
- endif
+ifneq ($(timed),)
+ echo -n "START: $< " && date
+endif
cd $< && $(MAKE) -f $(SUBDIR_MAKEFILE) $(SUBDIR_TARGET)
- ifneq ($(timed,))
- echo -n "FINISH: $< " && date
- endif
+ifneq ($(timed),)
+ echo -n "FINISH: $< " && date
+endif
# Build FOO.nested by calling MAKE again, this time with DIRS (with
# ".subdir" appended to each) as the targets, and passing FOO as the