summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2004-01-26 15:36:44 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2004-01-26 15:36:44 +0000
commit32ed9238ecf2f1fa9ebb7095ba09d2ee3dbfe108 (patch)
treee8c964e703be40a5ee4f22a00162a60d86a3cc38
parent2ce2303cd4b24746a069de6ff412f92df6064076 (diff)
downloadATCD-32ed9238ecf2f1fa9ebb7095ba09d2ee3dbfe108.tar.gz
ChangeLogTag: Mon Jan 26 09:35:51 2004 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog7
-rw-r--r--bin/MakeProjectCreator/templates/make.mpd2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c8d444eecf6..f973ba2c9f9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Mon Jan 26 09:35:51 2004 Chad Elliott <elliott_c@ociweb.com>
+
+ * bin/MakeProjectCreator/templates/make.mpd:
+
+ When calling the prelink script, the object files should be in
+ double quotes.
+
Mon Jan 26 07:19:13 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/config/ftrteventchannel.mpb:
diff --git a/bin/MakeProjectCreator/templates/make.mpd b/bin/MakeProjectCreator/templates/make.mpd
index 7421a55cf42..6c8ac69bf5b 100644
--- a/bin/MakeProjectCreator/templates/make.mpd
+++ b/bin/MakeProjectCreator/templates/make.mpd
@@ -123,7 +123,7 @@ specialscript:
<%endif%>
<%if(prelink)%>
<%prelink%>: specialscript $(OBJS)
- @specialscript $(NM) $(OBJS) "$(LDLIBS)" "<%if(libpaths)%><%libpaths%><%else%>.<%endif%>" <%prelink%>
+ @specialscript $(NM) "$(OBJS)" "$(LDLIBS)" "<%if(libpaths)%><%libpaths%><%else%>.<%endif%>" <%prelink%>
@$(RM) specialscript
<%noextension(prelink)%>.o: <%prelink%>