ProjectBuilder.st
changeset 3307 58f20c91f623
parent 3182 c7579f84fa6b
child 3308 5cbec72e27fa
--- 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'!