summaryrefslogtreecommitdiff
path: root/Demos
diff options
context:
space:
mode:
authorLisandro Dalcin <dalcinl@gmail.com>2010-03-11 15:08:54 -0300
committerLisandro Dalcin <dalcinl@gmail.com>2010-03-11 15:08:54 -0300
commit09c538c8dbd1eae864aef903488de5f665e92aa4 (patch)
tree8bf058cc73dc841328b5898a85f1b3d0df557ed6 /Demos
parent032c1738f1fd58278e58f21f642e0c75d35a1558 (diff)
downloadcython-09c538c8dbd1eae864aef903488de5f665e92aa4.tar.gz
fix typo in Makefile and remove make logfile after run
Diffstat (limited to 'Demos')
-rw-r--r--Demos/embed/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/embed/Makefile b/Demos/embed/Makefile
index 2117e558c..0cdb7b440 100644
--- a/Demos/embed/Makefile
+++ b/Demos/embed/Makefile
@@ -1,6 +1,6 @@
# Makefile for creating our standalone Cython program
PYTHON=python
-PYVERSION=$(shell ($PYTHON) -c "import sys; print(sys.version[:3])")
+PYVERSION=$(shell $(PYTHON) -c "import sys; print(sys.version[:3])")
PYPREFIX=$(shell $(PYTHON) -c "import sys; print(sys.prefix)")
LINKFORSHARED=$(shell $(PYTHON) -c "import distutils.sysconfig; print(distutils.sysconfig.get_config_var('LINKFORSHARED'))")
INCLUDES=-I$(PYPREFIX)/include/python$(PYVERSION)