ApplicationDefinition.st
changeset 11101 6f1176a15486
parent 11099 d410821fa987
child 11156 26121f8ce8c8
--- a/ApplicationDefinition.st	Tue Jul 29 14:35:42 2008 +0200
+++ b/ApplicationDefinition.st	Tue Jul 29 14:47:42 2008 +0200
@@ -2293,7 +2293,7 @@
         last := self package.
         "Note: the trailing blank in 'CFLAGS_LOCAL=$(GLOBALDEFINES) '
          is required!!"
-        self allPreRequisitesSorted do:[:projectID |
+        (self allPreRequisitesSorted copyWith:'stx:librun') do:[:projectID |
             s tab; nextPutLine:'cd ', (self msdosPathToPackage:projectID from:last). 
             s tab; nextPutLine:'bmake "CFLAGS_LOCAL=$(GLOBALDEFINES) "'. 
             last := projectID.
@@ -2311,7 +2311,7 @@
     |libPath|
 
     ^ String streamContents:[:s |
-        self allPreRequisitesSorted do:[:projectID |
+        (self allPreRequisitesSorted copyWith:'stx:librun') do:[:projectID |
             libPath := self pathToPackage_unix:projectID.
             s tab; nextPutAll: '(cd ', libPath; nextPutLine:' ; $(MAKE))'.
         ].
@@ -2425,5 +2425,5 @@
 !ApplicationDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ApplicationDefinition.st,v 1.115 2008-07-29 10:36:11 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ApplicationDefinition.st,v 1.116 2008-07-29 12:47:42 stefan Exp $'
 ! !