ProjectDefinition.st
changeset 23474 5f53ab680658
parent 23452 2c63cbc13474
child 23516 615475ef5504
--- a/ProjectDefinition.st	Fri Oct 26 21:08:30 2018 +0200
+++ b/ProjectDefinition.st	Fri Oct 26 21:08:58 2018 +0200
@@ -738,24 +738,26 @@
     |rel|
 
     aPackageID asPackageId module = self package asPackageId module ifTrue:[
-	^ self pathToPackage:aPackageID from:self package withSeparator:pathSeparator.
+        ^ self pathToPackage:aPackageID from:self package withSeparator:pathSeparator.
     ].
     rel := self topRelativePathToPackage:aPackageID withSeparator:pathSeparator.
     (rel startsWith:('stx', pathSeparator)) ifTrue:[
-	^ '$(TOP)', (rel copyFrom:'stx/' size).   "keep the separator"
+        ^ '$(TOP)', (rel copyFrom:'stx/' size).   "keep the separator"
     ] ifFalse:[
-	^ '$(TOP)', pathSeparator, '..', pathSeparator, rel
+        ^ '$(TOP)', pathSeparator, '..', pathSeparator, rel
     ]
 
     "
      exept_expecco_application pathToPackage:'exept:expecco/application' withSeparator:'\'
      exept_expecco_application pathToPackage:'exept:expecco/report' withSeparator:'\'
+     exept_expecco_application make_dot_proto_resource_rules
      stx_libbasic pathToPackage:'exept:expecco/application' withSeparator:'\'
     "
 
     "Modified: / 16-08-2006 / 18:55:41 / User"
     "Created: / 14-09-2006 / 13:21:23 / cg"
     "Modified: / 14-09-2006 / 15:23:59 / cg"
+    "Modified (comment): / 26-10-2018 / 21:06:56 / Claus Gittinger"
 !
 
 pathToTopFor:aProjectID withSeparator:aPathSeparator