# HG changeset patch # User Jan Vrany # Date 1434557454 -3600 # Node ID 0aed9c69ed483c202f36edd10f4e200947f78440 # Parent fc3dbe5654c51fb0665e65651406716b8d49bd19 Fixed target mcz - exit Smalltalk after all packages are exported. diff -r fc3dbe5654c5 -r 0aed9c69ed48 Make.proto --- a/Make.proto Wed Jun 17 16:49:28 2015 +0100 +++ b/Make.proto Wed Jun 17 17:10:54 2015 +0100 @@ -74,7 +74,8 @@ Class tryLocalSourceFirst: true. \ Smalltalk packagePath add:'$(TOP)/..' . \ Smalltalk loadPackage:'stx:goodies/petitparser'. \ - (Smalltalk at: #'stx_goodies_petitparser') monticelloExportTo: 'mc'." + (Smalltalk at: #'stx_goodies_petitparser') monticelloExportTo: 'mc'.\ + Smalltalk exit:0" diff -r fc3dbe5654c5 -r 0aed9c69ed48 stx_goodies_petitparser.st --- a/stx_goodies_petitparser.st Wed Jun 17 16:49:28 2015 +0100 +++ b/stx_goodies_petitparser.st Wed Jun 17 17:10:54 2015 +0100 @@ -137,7 +137,8 @@ Class tryLocalSourceFirst: true. \ Smalltalk packagePath add:''$(TOP)/..'' . \ Smalltalk loadPackage:''stx:goodies/petitparser''. \ - (Smalltalk at: #''stx_goodies_petitparser'') monticelloExportTo: ''mc''." + (Smalltalk at: #''stx_goodies_petitparser'') monticelloExportTo: ''mc''.\ + Smalltalk exit: 0." '