From 4c3b6fcc033a9f13e5f8688eaed34a31d17130d7 Mon Sep 17 00:00:00 2001 From: rdb Date: Sat, 28 Dec 2019 21:27:51 -0500 Subject: [PATCH] makepanda: libIMFbase.dylib is no longer shipped with Maya 2020 on macOS --- makepanda/makepanda.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/makepanda/makepanda.py b/makepanda/makepanda.py index 6cecc8cc31..d2ce07cc3c 100755 --- a/makepanda/makepanda.py +++ b/makepanda/makepanda.py @@ -1106,7 +1106,8 @@ if (COMPILER=="GCC"): LibName(pkg, "-lDependEngine") LibName(pkg, "-lCommandEngine") LibName(pkg, "-lFoundation") - LibName(pkg, "-lIMFbase") + if pkg != "MAYA2020": + LibName(pkg, "-lIMFbase") if GetTarget() != 'darwin': LibName(pkg, "-lOpenMayalib") else: