changed: #makeWithOutputTo:errorTo:
authorClaus Gittinger <cg@exept.de>
Fri, 20 Jul 2012 15:30:07 +0200
changeset 2895 2b939399b83b
parent 2894 1a0285e2c239
child 2896 6ed90332dbda
changed: #makeWithOutputTo:errorTo:
ProjectBuilder.st
--- a/ProjectBuilder.st	Wed Jul 18 19:12:42 2012 +0200
+++ b/ProjectBuilder.st	Fri Jul 20 15:30:07 2012 +0200
@@ -671,6 +671,9 @@
     directory := package directory.
 
     makeCommand := ParserFlags makeCommand.
+    usedCompiler isNil ifTrue:[
+        usedCompiler := ParserFlags usedCompiler.
+    ].
     usedCompiler = 'vc' ifTrue:[ 
         makeCommand := 'vcmake'. "/ compilerFlag := '-DUSEVC' 
     ] ifFalse:[
@@ -683,7 +686,7 @@
                 usedCompiler = 'bcc' ifTrue:[ 
                     makeCommand := 'bmake'.
                 ] ifFalse:[
-                    self error.
+                    self error:'no compiler specified'.
                 ]
             ]
         ]
@@ -729,7 +732,7 @@
         ]
     ]
 
-    "Modified: / 21-01-2012 / 13:52:56 / cg"
+    "Modified: / 20-07-2012 / 12:13:29 / cg"
 !
 
 recursiveCopyDirectoryForBuild:subdir