#BUGFIX by cg
authorClaus Gittinger <cg@exept.de>
Sun, 14 Oct 2018 14:50:43 +0200
changeset 3622 b9821260d1ab
parent 3621 5d7d4931b7c7
child 3623 861c9acf54ed
#BUGFIX by cg class: Tools::ProjectBuilder changed: #generateSourceFilesByCheckingOutUsing: #suffixForHeaderFiles
ProjectBuilder.st
--- a/ProjectBuilder.st	Sun Oct 14 08:48:43 2018 +0200
+++ b/ProjectBuilder.st	Sun Oct 14 14:50:43 2018 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2009 by eXept Software AG
               All Rights Reserved
@@ -203,7 +205,12 @@
 !
 
 suffixForHeaderFiles
-    ^ OperatingSystem isUNIXlike ifTrue:['.H'] ifFalse:['.STH']
+    OperatingSystem isUNIXlike ifTrue:[
+        OperatingSystem isOSXlike ifFalse:[
+            ^ '.H'
+        ].
+    ].
+    ^ '.STH'
 !
 
 usedCompilerForBuild:something
@@ -845,7 +852,7 @@
         errorTo:Transcript
         inDirectory:(buildDirectory construct:module)
         onError:[:status| self error:'cvs update failed'].
-self halt.
+"/ self halt.
 
     "Modified: / 29-12-2011 / 14:02:56 / cg"
 !