*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Thu, 14 Sep 2006 19:58:15 +0200
changeset 9888 7230c9f25e5e
parent 9887 5c0c2a62ad2d
child 9889 c480dd24d0b6
*** empty log message ***
ProjectDefinition.st
--- a/ProjectDefinition.st	Thu Sep 14 19:07:34 2006 +0200
+++ b/ProjectDefinition.st	Thu Sep 14 19:58:15 2006 +0200
@@ -1533,12 +1533,12 @@
     "the template code for the bmake.bat file"
 
     ^ 
-'make.exe -N -f nt.mak %%1 %%2
-%(SUBPROJECT_BMAKE_CALLS)
+'%(SUBPROJECT_BMAKE_CALLS)
+make.exe -N -f nt.mak %%1 %%2
 '
 
     "Created: / 17-08-2006 / 20:04:14 / cg"
-    "Modified: / 14-09-2006 / 18:38:57 / cg"
+    "Modified: / 14-09-2006 / 19:46:40 / cg"
 !
 
 make_dot_spec
@@ -2085,14 +2085,15 @@
 subProjectBmakeCalls
     ^ String streamContents:[:s |
         self subProjects do:[:packageID |
-            s cr. 
             s nextPutLine:'cd ', (self msdosPathToPackage:packageID from:(self package)). 
             s nextPutLine:'call bmake %1 %2'. 
             s nextPutLine:'cd ', (self msdosPathToPackage:(self package) from:packageID). 
+            s cr. 
         ]
     ]
 
     "Created: / 14-09-2006 / 18:40:09 / cg"
+    "Modified: / 14-09-2006 / 19:46:57 / cg"
 ! !
 
 !ProjectDefinition class methodsFor:'private'!
@@ -2717,7 +2718,7 @@
 !ProjectDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.59 2006-09-14 17:07:34 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.60 2006-09-14 17:58:15 cg Exp $'
 ! !
 
 ProjectDefinition initialize!