summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2005-05-27 15:26:46 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2005-05-27 15:26:46 +0000
commit1cbfbd522ec781fae88a80cb0ef22febb08901da (patch)
treee58ad5a7d52c4200df7ca533d4e4429ec7acfbca
parentbfaafb225ec1e306165ca7bcbfaa2dde960dddd8 (diff)
downloadATCD-1cbfbd522ec781fae88a80cb0ef22febb08901da.tar.gz
ChangeLogTag: Fri May 27 10:26:34 2005 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog14
-rw-r--r--bin/MakeProjectCreator/templates/gnu.mpd2
2 files changed, 12 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index e57d348e6ee..db7dcdb614c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Fri May 27 10:26:34 2005 Chad Elliott <elliott_c@ociweb.com>
+
+ * bin/MakeProjectCreator/templates/gnu.mpd:
+
+ Interpret custom_types->dependent as an array instead of a string.
+ This is completely backward compatible since a string is just a
+ one element array in the template language.
+
Fri May 27 12:22:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_aix_ibm.GNU:
@@ -12,10 +20,10 @@ Fri May 27 08:49:12 UTC 2005 Martin Corino <mcorino@remedy.nl>
Fri May 27 00:40:19 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
- * bin/tao_orb_tests.lst:
+ * bin/tao_orb_tests.lst:
- Added new recursive type Any insertion/extraction test to the
- test suite.
+ Added new recursive type Any insertion/extraction test to the
+ test suite.
Thu May 26 17:07:34 2005 Justin Michel <michel_j@ociweb.com>
diff --git a/bin/MakeProjectCreator/templates/gnu.mpd b/bin/MakeProjectCreator/templates/gnu.mpd
index b5c67018492..678bf6576c7 100644
--- a/bin/MakeProjectCreator/templates/gnu.mpd
+++ b/bin/MakeProjectCreator/templates/gnu.mpd
@@ -496,7 +496,7 @@ ifeq ($(wildcard $(GENERATED_DIRTY)), $(GENERATED_DIRTY))
## with respect to the source file. Now we need to make sure that
## they are up-to-date with respect to the generation tool. If the tool
## is newer than the generated files, then we need the special rule.
- ifneq ($(shell<%foreach(custom_type->input_file->output_files)%> $(TEST_EXE) <%custom_type->dependent%> -nt <%if(flag_overrides(custom_type->input_file, gendir))%><%flag_overrides(custom_type->input_file, gendir)%>/<%basename(custom_type->input_file->output_file)%><%else%><%custom_type->input_file->output_file%><%endif%> 2> /dev/null &&<%endfor%> echo 0),)
+ ifneq ($(shell<%foreach(custom_type->dependent)%><%foreach(custom_type->input_file->output_files)%> $(TEST_EXE) <%custom_type->dependent%> -nt <%if(flag_overrides(custom_type->input_file, gendir))%><%flag_overrides(custom_type->input_file, gendir)%>/<%basename(custom_type->input_file->output_file)%><%else%><%custom_type->input_file->output_file%><%endif%> 2> /dev/null &&<%endfor%><%endfor%> echo 0),)
.NOTPARALLEL:
endif
<%endif%>