From 831239633daa7a86f7774c62260c27a0354ab456 Mon Sep 17 00:00:00 2001 From: "Bryan W. Weber" Date: Sat, 25 Nov 2017 11:08:37 -0500 Subject: [PATCH] Fix dependency problem with matlab library Building in parallel would error out because the macOS Matlab library was relying on the static Cantera library before that was finished. --- src/matlab/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matlab/SConscript b/src/matlab/SConscript index cd455a233..8f4cf8205 100644 --- a/src/matlab/SConscript +++ b/src/matlab/SConscript @@ -68,7 +68,7 @@ ctmethods = build(localenv.SharedLibrary('#interfaces/matlab/toolbox/ctmethods', SHLIBSUFFIX=mexSuffix, LIBS=linklibs)) -if localenv['OS'] in ('Windows', 'Darwin'): +if localenv['OS'] in ('Windows'): localenv.Depends(ctmethods, localenv['cantera_shlib']) else: localenv.Depends(ctmethods, localenv['cantera_staticlib'])