# HG changeset patch # User Claus Gittinger # Date 1539521443 -7200 # Node ID b9821260d1abdb066a3991753c3892b450172f7a # Parent 5d7d4931b7c78421b2071565480dfb6244f551af #BUGFIX by cg class: Tools::ProjectBuilder changed: #generateSourceFilesByCheckingOutUsing: #suffixForHeaderFiles diff -r 5d7d4931b7c7 -r b9821260d1ab 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" !