*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Fri, 06 Oct 2006 15:49:45 +0200
changeset 10047 db630ab99570
parent 10046 1b39e1efbf0e
child 10048 488740a0addb
*** empty log message ***
ProjectDefinition.st
--- a/ProjectDefinition.st	Fri Oct 06 15:03:49 2006 +0200
+++ b/ProjectDefinition.st	Fri Oct 06 15:49:45 2006 +0200
@@ -1713,7 +1713,7 @@
 '.
 
             classesSorted do:[:eachClass |
-                s nextPutLine:'  ''' , eachClass classFilename asFilename baseName, ''''.    
+                s nextPutLine:'  ''' , ((eachClass classFilename asFilename withSuffix:'st') baseName), ''''.    
             ].
             classNamesUnloaded do:[:nm |
                 s nextPutLine:'  ''' , (Smalltalk fileNameForClass: nm) asFilename baseName, ''''.    
@@ -1763,6 +1763,7 @@
         ].
 
     "Created: / 14-09-2006 / 14:21:31 / cg"
+    "Modified: / 06-10-2006 / 13:27:04 / cg"
 !
 
 generate_make_dot_proto   
@@ -2210,12 +2211,12 @@
 objectLine_make_dot_spec_mappings: aClassName
     ^ Dictionary new                                               
         at: 'CLASSFILE' 
-        put: ( (Smalltalk classNamed:aClassName) classFilename asFilename withoutSuffix baseName );
+        put: ( (Smalltalk classNamed:aClassName) classFilename asFilename withoutSuffix baseName);
         yourself
 
     "Created: / 08-08-2006 / 20:17:28 / fm"
     "Modified: / 09-08-2006 / 18:26:52 / fm"
-    "Modified: / 14-09-2006 / 18:51:49 / cg"
+    "Modified: / 06-10-2006 / 13:26:02 / cg"
 !
 
 packageName_dot_rc_mappings
@@ -3256,7 +3257,7 @@
 !ProjectDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.87 2006-10-05 15:58:00 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.88 2006-10-06 13:49:45 cg Exp $'
 ! !
 
 ProjectDefinition initialize!