changed: #runBuildProcess:
authorClaus Gittinger <cg@exept.de>
Sun, 09 Sep 2012 23:01:13 +0200
changeset 2924 dd5db335cdc9
parent 2923 38943deb8672
child 2925 857c51227b15
changed: #runBuildProcess:
Tools__ProjectBuilderAssistantApplication.st
--- a/Tools__ProjectBuilderAssistantApplication.st	Sun Sep 09 20:59:04 2012 +0200
+++ b/Tools__ProjectBuilderAssistantApplication.st	Sun Sep 09 23:01:13 2012 +0200
@@ -1895,11 +1895,7 @@
         projectBuilder := ProjectBuilder new.
         projectBuilder package:(selectedProjectDefinition package).
         projectBuilder usedCompilerForBuild:(usedCompilerHolder value).
-        what = 'exe' ifTrue:[
-            projectBuilder makeExeOnly:true
-        ] ifFalse:[
-            projectBuilder makeExeOnly:false
-        ].
+        projectBuilder makeExeOnly:(what = 'exe').
 
         Error handle:[:ex |
             makeOutputWindow endEntry.
@@ -1912,7 +1908,7 @@
         ].
     ].
 
-    "Modified: / 06-09-2012 / 16:22:51 / cg"
+    "Modified: / 08-09-2012 / 20:18:50 / cg"
 !
 
 selectedApplicationChanged