summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2004-02-03 13:38:14 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2004-02-03 13:38:14 +0000
commitb9c8c8dd97994def182307b4d67889095d2eaf33 (patch)
tree118b3df45e0a40dfbdfdfdb35f40b21fdcc4f5ab
parent738d93f980657ff6e628084378cc3828feae91aa (diff)
downloadATCD-b9c8c8dd97994def182307b4d67889095d2eaf33.tar.gz
ChangeLogTag: Tue Feb 3 07:37:20 2004 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog7
-rw-r--r--bin/MakeProjectCreator/templates/make.mpd2
2 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index a6dc8fe4300..fe15dce986a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Tue Feb 3 07:37:20 2004 Chad Elliott <elliott_c@ociweb.com>
+
+ * bin/MakeProjectCreator/templates/make.mpd:
+
+ Added a missing foreach for the configurations. It's necessary in
+ order to access the platforms.
+
Mon Feb 2 13:53:08 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/OutputMessage.pm:
diff --git a/bin/MakeProjectCreator/templates/make.mpd b/bin/MakeProjectCreator/templates/make.mpd
index 7e9f7f34781..bc9ac7c9d55 100644
--- a/bin/MakeProjectCreator/templates/make.mpd
+++ b/bin/MakeProjectCreator/templates/make.mpd
@@ -101,6 +101,7 @@ $(BIN): $(OBJS) <%foreach(configurations)%><%foreach(platforms)%><%if(prelink)%>
$(LINK.cc) $(OUTPUT_OPTION) $(OBJS) $(LDLIBS)
<%endif%>
+<%foreach(configurations)%>
<%foreach(platforms)%>
<%if(soext)%>
<%if(sharedname)%>
@@ -125,6 +126,7 @@ all: $(INSTARGET) <%if(install)%>install<%else%><%if(!exename)%>install<%endif%>
<%endif%>
<%endif%>
<%endfor%>
+<%endfor%>
<%if(staticname)%>
$(LIB): $(OBJS)
$(AR) $(ARFLAGS) $(LIB) $(OBJS)<%foreach(configurations)%><%if(tempinc)%> `find $(TEMPINCDIR) -type f`<%endif%><%endfor%>