Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2004-01-28 14:51:13 +0300
committerKent Mein <mein@cs.umn.edu>2004-01-28 14:51:13 +0300
commitaad9662e2999947c40a5233d7eca8c65f6b98225 (patch)
tree991f6882386fc08a42ba5e8dcc0eab60c85a9829 /release/Makefile
parenta7a3b3b0b3386d1ddf42aa666215fb68bb0dfe93 (diff)
Fixed a couple of explicit references to .blender made them $(CONFDIR)
instead. Also moved the creation of $(CONFDIR) up so that it gets created before dumping files into it. There is still one extra reference to .blender for osX but I wasn't sure what was going on so I left it. It really should be "fixed" though. Kent
Diffstat (limited to 'release/Makefile')
-rw-r--r--release/Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/release/Makefile b/release/Makefile
index 3599b55e553..f074801160a 100644
--- a/release/Makefile
+++ b/release/Makefile
@@ -96,6 +96,8 @@ install: package
@#echo "****> Install text"
@cp text/README $(DISTDIR)
@cp text/*.txt $(DISTDIR)
+ @echo "----> Make Config dir .blender"
+ @mkdir -p $(CONFDIR)
@# possible overruling .txt text documents
@[ ! -d $(CONFIG_GUESS)/text ] || \
cp -f $(CONFIG_GUESS)/text/*.txt $(DISTDIR)
@@ -103,8 +105,8 @@ install: package
ifneq ($(OS), darwin)
@[ ! -d $(OCGDIR)/bin/.blender ] || \
cp -r $(OCGDIR)/bin/.blender $(DISTDIR)
- cp $(NANBLENDERHOME)/bin/.blender/.Blanguages $(DISTDIR)/.blender
- cp $(NANBLENDERHOME)/bin/.blender/.bfont.ttf $(DISTDIR)/.blender
+ cp $(NANBLENDERHOME)/bin/.blender/.Blanguages $(CONFDIR)
+ cp $(NANBLENDERHOME)/bin/.blender/.bfont.ttf $(CONFDIR)
endif
@echo "----> Copy blender$(EXT0) executable"
@@ -118,9 +120,6 @@ endif
endif
endif
- @echo "----> Make Config dir .blender"
- @mkdir -p $(CONFDIR)
-
ifneq ($(NOPLUGINS),true)
@echo "----> Copy and compile plugins"
@cp -r plugins $(DISTDIR)/plugins