From ee8693d6bfaa06075599b98b43de0d69c2bf9dba Mon Sep 17 00:00:00 2001 From: Stefan Gartner Date: Tue, 13 May 2003 11:29:25 +0000 Subject: [PATCH] don't copy the .blender dir to $DISTDIR on OS X, as it's contents is already in the application bundle --- release/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/release/Makefile b/release/Makefile index 812182418c4..b488a2e9eec 100644 --- a/release/Makefile +++ b/release/Makefile @@ -98,8 +98,11 @@ install: package @# possible overruling .txt text documents @[ ! -d $(CONFIG_GUESS)/text ] || \ cp -f $(CONFIG_GUESS)/text/*.txt $(DISTDIR) +#on OS X the contents of the .blender dir is already inside the bundle +ifneq ($(OS), darwin) @[ ! -d $(OCGDIR)/bin/.blender ] || \ cp -a $(OCGDIR)/bin/.blender $(DISTDIR) +endif # Python scripts removed for 2.14 #@echo "----> Copy python scripts"