From 9240a10fa8808ad219ed8503c70fd641eebefcbd Mon Sep 17 00:00:00 2001 From: Vukas Pajic Date: Thu, 29 Sep 2022 14:25:42 +0200 Subject: [PATCH] no need for Shapely.libs when using macos --- src/blenderbim/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/blenderbim/Makefile b/src/blenderbim/Makefile index 4472e26200..a54310a120 100644 --- a/src/blenderbim/Makefile +++ b/src/blenderbim/Makefile @@ -333,7 +333,12 @@ endif cd dist/working && wget $(SHAPELY_URL) cd dist/working && cp *.whl shapely.zip && unzip shapely.zip cp -r dist/working/shapely dist/blenderbim/libs/site/packages/ - cp -r dist/working/Shapely.libs dist/blenderbim/libs/site/packages/ + ifeq ($(PLATFORM), win) + cp -r dist/working/Shapely.libs dist/blenderbim/libs/site/packages/ + endif + ifeq ($(PLATFORM), linux) + cp -r dist/working/Shapely.libs dist/blenderbim/libs/site/packages/ + endif rm -rf dist/working # Required by xerparser and IFC4D