[Python-checkins] cpython: Fix out-of-tree builds for blake2

christian.heimes python-checkins at python.org
Tue Sep 6 16:35:29 EDT 2016


https://hg.python.org/cpython/rev/d40af8a3756a
changeset:   103141:d40af8a3756a
user:        Christian Heimes <christian at python.org>
date:        Tue Sep 06 22:35:14 2016 +0200
summary:
  Fix out-of-tree builds for blake2

files:
  Makefile.pre.in |  8 ++++----
  setup.py        |  4 ++--
  2 files changed, 6 insertions(+), 6 deletions(-)


diff --git a/Makefile.pre.in b/Makefile.pre.in
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -541,7 +541,7 @@
 # Run "Argument Clinic" over all source files
 # (depends on python having already been built)
 .PHONY=clinic
-clinic: $(BUILDPYTHON) Modules/_blake2/blake2s_impl.c
+clinic: $(BUILDPYTHON) $(srcdir)/Modules/_blake2/blake2s_impl.c
 	$(RUNSHARED) $(PYTHON_FOR_BUILD) ./Tools/clinic/clinic.py --make
 
 # Build the interpreter
@@ -572,9 +572,9 @@
 	$(CC) -c $(CCSHARED) $(PY_CORE_CFLAGS) -o $@ $<
 
 # blake2s is auto-generated from blake2b
-Modules/_blake2/blake2s_impl.c: $(BUILDPYTHON) Modules/_blake2/blake2b_impl.c Modules/_blake2/blake2b2s.py
-	$(RUNSHARED) $(PYTHON_FOR_BUILD) Modules/_blake2/blake2b2s.py
-	$(RUNSHARED) $(PYTHON_FOR_BUILD) Tools/clinic/clinic.py -f $@
+$(srcdir)/Modules/_blake2/blake2s_impl.c: $(BUILDPYTHON) $(srcdir)/Modules/_blake2/blake2b_impl.c $(srcdir)/Modules/_blake2/blake2b2s.py
+	$(RUNSHARED) $(PYTHON_FOR_BUILD) $(srcdir)/Modules/_blake2/blake2b2s.py
+	$(RUNSHARED) $(PYTHON_FOR_BUILD) $(srcdir)/Tools/clinic/clinic.py -f $@
 
 # Build the shared modules
 # Under GNU make, MAKEFLAGS are sorted and normalized; the 's' for
diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -889,8 +889,8 @@
         exts.append( Extension('_sha1', ['sha1module.c'],
                                depends=['hashlib.h']) )
 
-        blake2_deps = [os.path.join('_blake2', 'impl', name)
-                       for name in os.listdir('Modules/_blake2/impl')]
+        blake2_deps = glob(os.path.join(os.getcwd(), srcdir,
+                                        'Modules/_blake2/impl/*'))
         blake2_deps.append('hashlib.h')
 
         blake2_macros = []

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list