#BUGFIX by cg
authorClaus Gittinger <cg@exept.de>
Mon, 06 Jun 2016 14:45:52 +0200
changeset 3307 58f20c91f623
parent 3306 a2d6e8a1bcaf
child 3308 5cbec72e27fa
#BUGFIX by cg class: Tools::ProjectBuilder changed: #buildWithOutputTo:errorTo:
ProjectBuilder.st
--- a/ProjectBuilder.st	Mon Jun 06 11:36:17 2016 +0200
+++ b/ProjectBuilder.st	Mon Jun 06 14:45:52 2016 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2009 by eXept Software AG
               All Rights Reserved
@@ -269,6 +271,10 @@
 
     |module directory|
 
+    usedCompiler isNil ifTrue:[
+        usedCompiler := ParserFlags usedCompiler.
+    ].
+
     projectDefinitionClass := ProjectDefinition definitionClassForPackage:package.
     projectDefinitionClass isNil ifTrue:[
         self error:('Missing ProjectDefinition class for "',package asString,'"')
@@ -332,7 +338,7 @@
     self activityNotification:'Executing make...'.
     self makeWithOutputTo:stdOut errorTo:stdErr.
 
-    "Modified: / 04-09-2012 / 00:49:52 / cg"
+    "Modified: / 06-06-2016 / 12:13:01 / cg"
 ! !
 
 !ProjectBuilder methodsFor:'building/private'!