don't copy the .blender dir to $DISTDIR on OS X, as it's contents is

already in the application bundle
This commit is contained in:
Stefan Gartner 2003-05-13 11:29:25 +00:00
parent d40cb3da9f
commit ee8693d6bf

@ -98,8 +98,11 @@ install: package
@# possible overruling .txt text documents @# possible overruling .txt text documents
@[ ! -d $(CONFIG_GUESS)/text ] || \ @[ ! -d $(CONFIG_GUESS)/text ] || \
cp -f $(CONFIG_GUESS)/text/*.txt $(DISTDIR) 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 ] || \ @[ ! -d $(OCGDIR)/bin/.blender ] || \
cp -a $(OCGDIR)/bin/.blender $(DISTDIR) cp -a $(OCGDIR)/bin/.blender $(DISTDIR)
endif
# Python scripts removed for 2.14 # Python scripts removed for 2.14
#@echo "----> Copy python scripts" #@echo "----> Copy python scripts"