Win32: Temporaraily use $(OUTDIR_SLASH) in `Make.spec` jv
authorJan Vrany <jan.vrany@fit.cvut.cz>
Wed, 18 Jan 2017 10:18:09 +0000
branchjv
changeset 21289 7189410cd300
parent 21288 886dc134d57e
child 21290 1e7175049bbc
Win32: Temporaraily use $(OUTDIR_SLASH) in `Make.spec` ...to keep builds running. As of 2017-01-13 eXept changed Borland makefiles (still used on Windows!!!) so full build no longer works. To workaround this we use older version of these makefiles [1]. To make everything working again, we need to use `$(OUTDIR_SLASH)` as this is how it worked before (breaking) change. https://swing.fit.cvut.cz/hg/stx-goodies-builder-rake/rev/f163911eb7bc
ProjectDefinition.st
--- a/ProjectDefinition.st	Wed Jan 18 10:01:45 2017 +0000
+++ b/ProjectDefinition.st	Wed Jan 18 10:18:09 2017 +0000
@@ -4783,7 +4783,7 @@
             s nextPutLine:eachCategory,'_OBJS= \'.
             classNames do:putLineForClassName.
             (eachCategory = 'COMMON' and:[self hasExtensionMethods]) ifTrue:[
-                s nextPutLine:'    $(OUTDIR)extensions.$(O) \'.
+                s nextPutLine:'    $(OUTDIR_SLASH)extensions.$(O) \'.
             ].
 
             s cr.
@@ -5365,7 +5365,7 @@
 
 objectLine_make_dot_spec
 
-    ^'    $(OUTDIR)%(CLASSFILE).$(O) \'
+    ^'    $(OUTDIR_SLASH)%(CLASSFILE).$(O) \'
 
     "Created: / 08-08-2006 / 20:16:46 / fm"
     "Modified: / 23-08-2006 / 11:11:38 / cg"