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
path: root/intern
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2003-03-22 00:50:47 +0300
committerKent Mein <mein@cs.umn.edu>2003-03-22 00:50:47 +0300
commitdc91e981593492217922e0a23863aae8e99a86c5 (patch)
tree73e457100729ff757a4fff529c6a7078892e460e /intern
parentb139f813b8903eada18cdc786449c1a9977640c8 (diff)
Modified it to use $(NAN_PYTHON_BINARY) instead of just plain old
python. (otherwise why have the env var?) ;) Kent
Diffstat (limited to 'intern')
-rw-r--r--intern/python/freeze/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/python/freeze/Makefile b/intern/python/freeze/Makefile
index a606b942e04..a9e363cb687 100644
--- a/intern/python/freeze/Makefile
+++ b/intern/python/freeze/Makefile
@@ -8,7 +8,7 @@ SRCDIR = ../modules
TARGETDIR = $(OCGDIR)/blender/bpython/frozen
-PYFLAGS = -S -O
+PYFLAGS=-S -O
default: importer
@@ -19,7 +19,7 @@ install: importer
importer:
@[ -d $(TARGETDIR) ] || mkdir -p $(TARGETDIR)
- python $(PYFLAGS) freeze.py -d -x os -x pprint -x string -x copy -I $(SRCDIR) -o $(TARGETDIR) $(SRCDIR)/VRMLmain.py
+ $(NAN_PYTHON_BINARY) $(PYFLAGS) freeze.py -d -x os -x pprint -x string -x copy -I $(SRCDIR) -o $(TARGETDIR) $(SRCDIR)/VRMLmain.py
$(MAKE) -C $(TARGETDIR)
clean: