# HG changeset patch # User Stefan Vogel # Date 1308745779 -7200 # Node ID 0d52c66fbc8e52c6367583df49e7b7d6aa0dbe12 # Parent 5e4e46856d8dc1d8a7ce68dc2991da11c6cf529c changed: #makeWithOutputTo:errorTo: diff -r 5e4e46856d8d -r 0d52c66fbc8e ProjectBuilder.st --- a/ProjectBuilder.st Wed Jun 22 14:16:09 2011 +0200 +++ b/ProjectBuilder.st Wed Jun 22 14:29:39 2011 +0200 @@ -635,10 +635,11 @@ usedCompiler = 'vc' ifTrue:[ makeCommand := 'vcmake'. compilerFlag := '-DUSEVC' ]. usedCompiler = 'lcc' ifTrue:[ makeCommand := 'lcmake'. compilerFlag := '-DUSELCC' ]. usedCompiler = 'gcc' ifTrue:[ makeCommand := 'make'. ]. + makeCommand := makeCommand, ' TOP=', mySTXTopDirectory pathName. OperatingSystem isUNIXlike ifTrue:[ OperatingSystem - executeCommand:'sh ../../stx/rules/stmkmf' + executeCommand:('sh %1/rules/stmkmf' bindWith:mySTXTopDirectory pathName) inputFrom:nil outputTo:stdOut errorTo:stdErr