summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2003-08-07 17:43:43 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2003-08-07 17:43:43 +0000
commit8acc9e5eb7305eca32dd2406686b74e37d4a46dd (patch)
tree604234ac1e2ab039a368f193dab3446a0ada3038
parentaf5a774ce5de7c4c090c53a3f88a08a112a84d12 (diff)
downloadATCD-8acc9e5eb7305eca32dd2406686b74e37d4a46dd.tar.gz
ChangeLogTag: Thu Aug 7 12:43:05 2003 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 782f9919c3c..43ba9daedf8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Thu Aug 7 12:43:05 2003 Chad Elliott <elliott_c@ociweb.com>
+
+ * bin/MakeProjectCreator/templates/make.mpd:
+
+ Fixed a problem with the generic make template where a static
+ library wouldn't get installed.
+
Thu Aug 7 13:08:28 UTC 2003 Don Hinton <dhinton@dresystems.com>
* ace/Unbounded_Set_Ex.cpp:
diff --git a/bin/MakeProjectCreator/templates/make.mpd b/bin/MakeProjectCreator/templates/make.mpd
index 9673c5f9246..46bf0e62ef6 100644
--- a/bin/MakeProjectCreator/templates/make.mpd
+++ b/bin/MakeProjectCreator/templates/make.mpd
@@ -104,7 +104,7 @@ $(BIN): $(OBJS)
<%endif%>
<%if(sharedname)%>
-all: $(SHLIB) <%if(install)%>install<%else%><%if(!exename)%>install<%endif%><%endif%>
+all: $(INSTARGET) <%if(install)%>install<%else%><%if(!exename)%>install<%endif%><%endif%>
$(SHLIB): $(OBJS)
$(LINK.cc) $(SHFLAGS) $(OUTPUT_OPTION) $(OBJS) $(LDLIBS)