#BUGFIX by stefan
authorStefan Vogel <sv@exept.de>
Tue, 17 Jan 2017 22:14:36 +0100
changeset 21261 e3e7fac5b742
parent 21260 062fb24a264a
child 21262 1b36eec001b9
child 21288 886dc134d57e
#BUGFIX by stefan class: ApplicationDefinition changed: #generateSubProjectLibs_bc_dot_mak
ApplicationDefinition.st
--- a/ApplicationDefinition.st	Tue Jan 17 21:02:57 2017 +0100
+++ b/ApplicationDefinition.st	Tue Jan 17 22:14:36 2017 +0100
@@ -1598,7 +1598,7 @@
             |libPath libobjPath|
 
             libPath := self pathToPackage:projectID withSeparator:'\'.
-            libobjPath := libPath , '\', (self libraryNameFor:projectID).
+            libobjPath := libPath , '\$(OBJDIR)\', (self libraryNameFor:projectID).
             s space; nextPutAll:libobjPath; nextPutLine:'.dll \'.
         ].
         s cr.
@@ -1611,7 +1611,7 @@
 
     "Created: / 09-08-2006 / 11:24:39 / fm"
     "Modified: / 14-09-2006 / 18:46:09 / cg"
-    "Modified: / 17-01-2017 / 17:00:40 / stefan"
+    "Modified: / 17-01-2017 / 21:26:08 / stefan"
 !
 
 generateSubProjectLibs_make_dot_proto