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:
authorFrank van Beek <frank@iae.nl>2003-02-24 22:04:20 +0300
committerFrank van Beek <frank@iae.nl>2003-02-24 22:04:20 +0300
commit8c5f949cb25d4b7149f40477bbb4aa1c688daf23 (patch)
tree8eb5bbb482ccfa7dda25951ae21232f5d62a0561 /intern
parentde3c6488f702e05626231e1b9578bdb57d48c2c2 (diff)
- python include path is now taken from nan_definitions.mk
Diffstat (limited to 'intern')
-rw-r--r--intern/python/freeze/makemakefile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/python/freeze/makemakefile.py b/intern/python/freeze/makemakefile.py
index 847066e42da..0e97ad81147 100644
--- a/intern/python/freeze/makemakefile.py
+++ b/intern/python/freeze/makemakefile.py
@@ -28,7 +28,7 @@ def makemakefile(outfp, makevars, files, target):
outfp.write("\n\ninclude nan_definitions.mk\n")
outfp.write("ifeq ($(OS),windows)\n")
outfp.write(" CC=$(NANBLENDERHOME)/source/tools/cygwin/cl_wrapper.pl\n")
- outfp.write(" CFLAGS=-I../../../../../lib/windows/python/include/python2.2/ $(OPT)\n")
+ outfp.write(" CFLAGS=-I$(NAN_PYTHON)/include/python$(NAN_PYTHON_VERSION) $(OPT)\n")
outfp.write("endif\n")
outfp.write("\nall: %s\n\n" % libtarget)